-
-
Save NielsMinssen/4bf1ed38c6f5cb7d8e84acba21ff35a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cur = conn.cursor() | |
cur.execute(""" | |
INSERT INTO Employee (ID,NAME,EMAIL) VALUES | |
(1,'Paul Fouchet','paul@fouchet.com'), | |
(2,'Adrien dubois','adriendb@gmail.com') | |
""") | |
conn.commit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment