-- create a new table CREATE TABLE student( id INT PRIMARY KEY, name VARCHAR(255) ); -- insert a data in table INSERT INTO student VALUES(1 , "Manraj"); -- query all the records from table SELECT * FROM student;
Last updated 1 year ago
Was this helpful?