CRUD Operations
-- 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
Was this helpful?