0
Does insert into command creates a new table if there is no table with the same name?
2 Answers
+ 15
The SQL INSERT INTO Statement is used to add new rows of data to a table in the database
check out this links for more info & examples đ
https://www.tutorialspoint.com/sql/sql-insert-query.htm
https://www.geeksforgeeks.org/sql-insert-statement/
https://www.w3schools.com/sql/sql_insert.asp
0
nope you have to create a table first using CREATE TABLE TABLENAME