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
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
add a comment |
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
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
add a comment |
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
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
python sql ms-access
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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