Perform DML commands (Data Manipulation Language)
To perform manipulation or processing of data in a table used DML command. Various kinds of DML commands are:
1. Insert: enter/add new data
INSERT INTO table_name (column_name) VALUES (value);
example:
insert into student (ID, name, address, major) values (12345, ‘Josh’, ‘California’, ‘informatics’);
description:
insert into -> command to add data
students -> table name that you want to add data
ID, name, [...]