Archives
To perform manipulation or processing of data in a table used DML command. Various kinds of DML commands are: 1. Insert: enter/add new data INSERT INTO table_name (column_name) VALUES (value); example: insert into student (ID, name, address, major) values (12345, ‘Josh’, ‘California’, ‘informatics’); description: insert into -> command to add data students -> table name [...]
Dec 23rd, 2009 | Filed under SQL