write the syntax of following commands with example.....................(create, select, update and insert)
Answers
Answered by
5
CREATE TABLE my_table (
id INTEGER AUTOINCREMENT
name text
age INT
);
SELECT * FROM my_table;
UPDATE my_table SET name = 'Timmy' WHERE id = 69;
INSERT INTO my_table (name, age) VALUES ('Mohini', 18);
Similar questions