+ 3
With SQL, how can you insert a new record into the "Persons" table?
why INSERT ('Jimmy', 'Jackson') INTO Persons is false?
1 Resposta
+ 7
INSERT INTO table_name
VALUES (value1, value2, value3,...);
this is the syntax..
insert and into are together before the table name and then the keyword value and then the values