Computer Science, asked by kunalpanwar1234, 4 months ago

write the syntax of following commands with example.....................(create, select, update and insert) ​

Answers

Answered by valeriy69
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);

\small\mathsf\color{lightgreen}useful?\: \color{white}\mapsto\: \color{orange}brainliest

Similar questions