INSERT statement in Oracle
INSERT statement in oracle is a DML ( Data Manipulation Language) command. It is used to insert new rows into the oracle tables in the oracle database Syntax INSERT INTO <table_name>(col1, col2, … column_n )VALUES(value1, value2, … value_n ); Heretable_name: Table where new records need to be insertedcol1,col2: is the column in the tablesvalue1,value2….: are […]
INSERT statement in Oracle Read More »