INSERT [INTO] tb1_name [(col_name...)] VALUES(val,...);
INSERT tb1 VALUES('Tom',25,7863.25);
INSERT tb1(username,salary) VALUES('John',4500.69);