With SQL, how can you insert a new record into the "Persons" table? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 3

With SQL, how can you insert a new record into the "Persons" table?

why INSERT ('Jimmy', 'Jackson') INTO Persons is false?

25th Mar 2017, 8:16 AM
Hassan Papi
Hassan Papi - avatar
1 ответ
+ 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
25th Mar 2017, 9:37 AM
Dhairya Agarwal
Dhairya Agarwal - avatar