DDL Command CREATE Command It is used to create any data base object like tables, views, indexes, sequences, synonyms , users, functions, procedures, triggers, packages and so on. HOW TO CREATE A TABLE? syn: CREATE TABLE <table_name> ( <colname1> DATATYPE (size), <colname2> DATATYPE (size), : : : :, : : : :, ); INSERT Command This command is used for inserting new records into the tables Syntax: INSERT INTO <table_name>[(col1, col2,...., col n)] VALUES(val1, val2,.....,val n); NOTE: i) If number of columns in the table and number of values inserting in to the table are equal, then no need to specify column names while inserting records. ii) Char, Varchar2 and date type values should be enclosed in Single Quotes. iii) If Number of inserting values are less than the