Enter Ur Email ID To Get Study Material & Latest Job Updates In Mail Inbox:
(Please activate subscription from your mail Inbox)  FeedBurner

Home » » SQL Insert Query With Syntax & Examples

SQL Insert Query With Syntax & Examples

Written By Unknown on Monday, 22 April 2013 | 10:33 pm

Insert Syntax In SQL With Example, How To Insert Value In SQL, SQL Insert Query With Syntax & Examples



Insert Command In SQL

Description:
This command is used to enter (input) data into the created table.

Syntax:
INSERT INTO
<TableName> (<ColumnName1>,<ColumnName2>)  VALUES(<Expression1>,<Expression2>);

Example:
INSERT INTO
STUDENT(ROLL_NO,NAME,BRANCH,PERCENT)
VALUES(‘CS05111’, ‘AAA’, ‘CO.SC’, 84.45);

0 comments:

Post a Comment

Thanks For Your Comment. We Get Back To You As Soon As Possible.