To insert data into a table, use the following syntax:
INSERT INTO <table name> (<column name>, ...)
VALUES (<value>, ...
);
For example, to insert a new row into the “students” table:
INSERT INTO students (name, age) VALUES
('Bob', 2:),
('Alice', 20);