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:
43 comments Page 2 of 5.
Haddad said:
9 years ago
The "insert" is the only keyword to add rows into table
insert into ( table_name ) values ( 'value1' , 'value2' , ...);
If the value is number don't put the quotes .
insert into ( table_name ) values ( 'value1' , 'value2' , ...);
If the value is number don't put the quotes .
Sacdiyo Nuur Maxamuud said:
9 years ago
You can add a row using INSERT keyword.
Pawan kumar said:
9 years ago
What is use of add and make?
Pawan Kumar said:
9 years ago
If change the serial of value like (value1', ' value3', ' value2) ; then variable will execute or not?
Bhavya said:
10 years ago
Insert command is used to add/create the row in the table.
INSERT into TABLE -NAME values('value1','value2','value3');
INSERT into TABLE -NAME values('value1','value2','value3');
Mounika Pallapu said:
10 years ago
INSERT is a keyword it is used for ADD the values to the table.
Prasu said:
1 decade ago
Insert command is used insert new values into table.
Mahesh Karbhal said:
1 decade ago
INSERT command is use for inserting row in a table.
Prasanth said:
1 decade ago
Yes, absolutely. I will use insert keyword to insert a row in a table. No options.
Vanesha said:
1 decade ago
The correct answer is insert keyword only because this keyword is add new row.
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers