Trying to add a row in SQL. What is wrong with my code here?
Clash Royale CLAN TAG#URR8PPP
Trying to add a row in SQL. What is wrong with my code here?
SELECT_QUERY = '''
select name,birthdate from animals where species='opossum';
'''
INSERT_QUERY = '''
insert into animals(name,species,birthdate)
values('Baxter','opossom','2018-09-17');
'''
What's your question?
– D-Shih
2 mins ago
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Please post actual code. How does SELECT_QUERY get executed? What language are you using? Which database server?
– Terry Carmen
2 mins ago