How to get certain data from a SQL table with an input in python?How can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerHow to return only the Date from a SQL Server DateTime datatypeHow can I safely create a nested directory in Python?How to get the current time in PythonHow can I make a time delay in Python?Getting the last element of a list in PythonHow do I get the number of elements in a list in Python?How do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL table

How to prevent YouTube from showing already watched videos?

How do ultrasonic sensors differentiate between transmitted and received signals?

Can a malicious addon access internet history and such in chrome/firefox?

What should I use for Mishna study?

Organic chemistry Iodoform Reaction

Pronouncing Homer as in modern Greek

Installing PowerShell on 32-bit Kali OS fails

Perfect riffle shuffles

Should my PhD thesis be submitted under my legal name?

Indicating multiple different modes of speech (fantasy language or telepathy)

Lifted its hind leg on or lifted its hind leg towards?

How can I raise concerns with a new DM about XP splitting?

How do I repair my stair bannister?

Simulating a probability of 1 of 2^N with less than N random bits

Teaching indefinite integrals that require special-casing

Can I use my Chinese passport to enter China after I acquired another citizenship?

How will losing mobility of one hand affect my career as a programmer?

Is there an Impartial Brexit Deal comparison site?

Simple image editor tool to draw a simple box/rectangle in an existing image

node command while defining a coordinate in TikZ

Why is delta-v is the most useful quantity for planning space travel?

Is the next prime number always the next number divisible by the current prime number, except for any numbers previously divisible by primes?

How can I successfully establish a nationwide combat training program for a large country?

What does the "3am" section means in manpages?



How to get certain data from a SQL table with an input in python?


How can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerHow to return only the Date from a SQL Server DateTime datatypeHow can I safely create a nested directory in Python?How to get the current time in PythonHow can I make a time delay in Python?Getting the last element of a list in PythonHow do I get the number of elements in a list in Python?How do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL table













-1















I got this table in Microsoft Access



NAME - GENDER - NUMBER
Jo - Male - 1
Ali - Male - 2
MO - Male - 3


I want to use this input:



question = input("What is your name: ")


I want the user to fill in a name and get the gender and the number as output.



I am a SQL beginner and I am a python beginner.



I use pyodbc.
Can anyone help me how to do this?



Can you also explain why you did what you did?



Many thanks in advance!



This is my code so far:



import pyodbc

conn = pyodbc.connect(r'Driver=Microsoft Access Driver (*.mdb, *.accdb);' +
r'DBQ=C:UsersGebruikerPycharmProjectsTennisDatabase.accdb;')
gegevens = conn.cursor()

SelectString = 'SELECT NAME, GENDER, NUMBER FROM LIST;'

gegevens.execute(SelectString)
gegevensList = gegevens.fetchall()

print(len(gegevensList), "Teamgegevens : ")

for gegevens in gegevensList:
print (gegevens)
print('')









share|improve this question



















  • 1





    What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

    – Andy G
    Mar 21 at 14:47












  • What is your output? What errors do you get? Where exactly are you stuck?

    – Pax Vobiscum
    Mar 21 at 14:52











  • I do not now where to begin

    – Josse Lardinois
    Mar 21 at 14:54











  • With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

    – Andy G
    Mar 21 at 14:56












  • You have begun, you showed us your code. Where in the code does it give an error? What is your output?

    – Pax Vobiscum
    Mar 21 at 15:56















-1















I got this table in Microsoft Access



NAME - GENDER - NUMBER
Jo - Male - 1
Ali - Male - 2
MO - Male - 3


I want to use this input:



question = input("What is your name: ")


I want the user to fill in a name and get the gender and the number as output.



I am a SQL beginner and I am a python beginner.



I use pyodbc.
Can anyone help me how to do this?



Can you also explain why you did what you did?



Many thanks in advance!



This is my code so far:



import pyodbc

conn = pyodbc.connect(r'Driver=Microsoft Access Driver (*.mdb, *.accdb);' +
r'DBQ=C:UsersGebruikerPycharmProjectsTennisDatabase.accdb;')
gegevens = conn.cursor()

SelectString = 'SELECT NAME, GENDER, NUMBER FROM LIST;'

gegevens.execute(SelectString)
gegevensList = gegevens.fetchall()

print(len(gegevensList), "Teamgegevens : ")

for gegevens in gegevensList:
print (gegevens)
print('')









share|improve this question



















  • 1





    What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

    – Andy G
    Mar 21 at 14:47












  • What is your output? What errors do you get? Where exactly are you stuck?

    – Pax Vobiscum
    Mar 21 at 14:52











  • I do not now where to begin

    – Josse Lardinois
    Mar 21 at 14:54











  • With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

    – Andy G
    Mar 21 at 14:56












  • You have begun, you showed us your code. Where in the code does it give an error? What is your output?

    – Pax Vobiscum
    Mar 21 at 15:56













-1












-1








-1








I got this table in Microsoft Access



NAME - GENDER - NUMBER
Jo - Male - 1
Ali - Male - 2
MO - Male - 3


I want to use this input:



question = input("What is your name: ")


I want the user to fill in a name and get the gender and the number as output.



I am a SQL beginner and I am a python beginner.



I use pyodbc.
Can anyone help me how to do this?



Can you also explain why you did what you did?



Many thanks in advance!



This is my code so far:



import pyodbc

conn = pyodbc.connect(r'Driver=Microsoft Access Driver (*.mdb, *.accdb);' +
r'DBQ=C:UsersGebruikerPycharmProjectsTennisDatabase.accdb;')
gegevens = conn.cursor()

SelectString = 'SELECT NAME, GENDER, NUMBER FROM LIST;'

gegevens.execute(SelectString)
gegevensList = gegevens.fetchall()

print(len(gegevensList), "Teamgegevens : ")

for gegevens in gegevensList:
print (gegevens)
print('')









share|improve this question
















I got this table in Microsoft Access



NAME - GENDER - NUMBER
Jo - Male - 1
Ali - Male - 2
MO - Male - 3


I want to use this input:



question = input("What is your name: ")


I want the user to fill in a name and get the gender and the number as output.



I am a SQL beginner and I am a python beginner.



I use pyodbc.
Can anyone help me how to do this?



Can you also explain why you did what you did?



Many thanks in advance!



This is my code so far:



import pyodbc

conn = pyodbc.connect(r'Driver=Microsoft Access Driver (*.mdb, *.accdb);' +
r'DBQ=C:UsersGebruikerPycharmProjectsTennisDatabase.accdb;')
gegevens = conn.cursor()

SelectString = 'SELECT NAME, GENDER, NUMBER FROM LIST;'

gegevens.execute(SelectString)
gegevensList = gegevens.fetchall()

print(len(gegevensList), "Teamgegevens : ")

for gegevens in gegevensList:
print (gegevens)
print('')






python sql ms-access






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 14:51







Josse Lardinois

















asked Mar 21 at 14:46









Josse LardinoisJosse Lardinois

44




44







  • 1





    What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

    – Andy G
    Mar 21 at 14:47












  • What is your output? What errors do you get? Where exactly are you stuck?

    – Pax Vobiscum
    Mar 21 at 14:52











  • I do not now where to begin

    – Josse Lardinois
    Mar 21 at 14:54











  • With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

    – Andy G
    Mar 21 at 14:56












  • You have begun, you showed us your code. Where in the code does it give an error? What is your output?

    – Pax Vobiscum
    Mar 21 at 15:56












  • 1





    What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

    – Andy G
    Mar 21 at 14:47












  • What is your output? What errors do you get? Where exactly are you stuck?

    – Pax Vobiscum
    Mar 21 at 14:52











  • I do not now where to begin

    – Josse Lardinois
    Mar 21 at 14:54











  • With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

    – Andy G
    Mar 21 at 14:56












  • You have begun, you showed us your code. Where in the code does it give an error? What is your output?

    – Pax Vobiscum
    Mar 21 at 15:56







1




1





What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

– Andy G
Mar 21 at 14:47






What code do you have so far? Without any attempt this question is too broad. You are asking us to write code as well as tutor.

– Andy G
Mar 21 at 14:47














What is your output? What errors do you get? Where exactly are you stuck?

– Pax Vobiscum
Mar 21 at 14:52





What is your output? What errors do you get? Where exactly are you stuck?

– Pax Vobiscum
Mar 21 at 14:52













I do not now where to begin

– Josse Lardinois
Mar 21 at 14:54





I do not now where to begin

– Josse Lardinois
Mar 21 at 14:54













With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

– Andy G
Mar 21 at 14:56






With books, courses or tutorials. The question remains too broad. Although, the code you have added seems to indicate that you have progressed further than indicated.

– Andy G
Mar 21 at 14:56














You have begun, you showed us your code. Where in the code does it give an error? What is your output?

– Pax Vobiscum
Mar 21 at 15:56





You have begun, you showed us your code. Where in the code does it give an error? What is your output?

– Pax Vobiscum
Mar 21 at 15:56












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283113%2fhow-to-get-certain-data-from-a-sql-table-with-an-input-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283113%2fhow-to-get-certain-data-from-a-sql-table-with-an-input-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript