- 3
Drag and drop from the options below to insert a data item into the ''people'' table.
Drag and drop from the options below to insert a data item into the ''people'' table. INSERT INTO people VALUES ('John Smith', '1', 22)
2 Respuestas
+ 1
INSERT INTO &VALUES
- 1
Missing column names in sql command:
INSERT INTO people (name,id,age) VALUES ...