Perform DML commands (Data Manipulation Language)

Dec 23rd, 2009

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 that you want to add data
ID, name, [...]

Hello world!

Dec 19th, 2009

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Tags:

Advertise