The INSERT INTO Statement, the first begins with making table in the insert and fill the data.
The INSERT INTO Format :
INSERT INTO TABLE_NAME (<FIELDNAME1>,<FIELDNAME2>,<FIELDNAME3>) VALUES (<FIELD_DATA1>, <FIELD_DATA2>, <FIELD_DATA3>);
The INSERT INTO Example :
INSERT INTO MAHASISWA (ID_MHS, NAMA, ALAMAT) VALUES (1, 'DOSEN', 'BR. PERANG LUKLUK');