0

I am new to this. I've established a connection to my Oracle database using cx_Oracle. Say that I have a table named "student" with the following infos: "name","age","student_number","adress". Now i'm looking into inserting another row to the table. How do I check if student_number 6 already exist? Thanks in advance!

1 Answer 1

1

I really recommend you to take a look at the basics of SQL...

SELECT * FROM "student" WHERE "student_number" = 6
Sign up to request clarification or add additional context in comments.

1 Comment

How do I do this in Python though?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.