write a query to insert data in a table
Answers
Answered by
2
Answer:
INSERT INTO TABLE statement
INSERT INTO table_name (column_list) VALUES (column_values);
INSERT INTO table_name VALUES (column_values);
SELECT 1 or more attributes FROM table;
Similar questions