Database - Introduction to SQL - Discussion
Discussion Forum : Introduction to SQL - General Questions (Q.No. 1)
1.
You can add a row using SQL in a database with which of the following?
Discussion:
41 comments Page 1 of 5.
Nithya said:
1 decade ago
We can add rows using Insert keyword only.
Ankur said:
1 decade ago
Insert into <table_name> values("&name",&age);
Ritu singh said:
1 decade ago
Create is a command to create a new table.
Navee said:
1 decade ago
Insert is the only keyword to add a row in a table.
Piyush said:
1 decade ago
Insert command can be used to easily add the complete row.
Aysha said:
1 decade ago
Insert is the keyword to add all values into the table
Sangita said:
1 decade ago
Insert into<table name> values(001,'rupali');
Saidareddy said:
1 decade ago
Insert command is only add a row in a table.
Rani said:
1 decade ago
Insert is the command used to add rows in a table.
Ahmed said:
1 decade ago
Query:
Insert into <table_name>[(column names)] values(value1,value2,....);
In case of character input values must be written within single quotes.
Insert into <table_name>[(column names)] values(value1,value2,....);
In case of character input values must be written within single quotes.
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers