To create a table in mysql using the below command
mysql> create table tablename( col1 datatype, col2 datatype,…………);
Example –
mysql> create table INTELLIPAAT(emp_idint,emp_namevarchar(30),emp_salint);
Insert the values into the table
mysql> insert into table name(value1,value2,value3,………);
Example-
mysql> insert into INTELLIPAAT(1234,’aaa’,20000);
mysql> insert into INTELLIPAAT(1235,’bbb’,10000);
mysql> insert into INTELLIPAAT(1236,’ccc’,15000);