syntex of insert
Answers were Sorted based on User's Feedback
Answer / mahathi
insert into tablename (col1,col2,........) values
(val1,val2,........)
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / dk
Insert into tablename (c1,c1,c3,...) values(v1,v2,v3,...)
and we can also use
Insert into tablename values(v1,v2,v3,...)
but in this we must have to know numbers of columns and we
have to insert values for all not null columns
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / d
insert into (table name) values(fieldname datatype);
for ex:
insert into emp values(eno number(3),ename varchar2(20));
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jasmeet kaur
insert into table_name("column_name1","column_name2")
value("value1","value2")
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gajanan.waghode
INSERT INTO table[(cloumn [,cloumn...])]
VALUES (value[,value...]);
with this syntax only one row is inserted at a time.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different index configurations a table can have?
How to create a new table in a given schema?
in the physical file layout, where should the transaction log be stored in relation to the data file?
What is the use of sql profiler in sql server 2012?
explain how to create a new schema in a database? : Sql server database administration
What is normalization 1nf 2nf 3nf?
We create an index to fast the search. How it fast the query? Do we write any special keyword with query?
CTE(common table expression)
How to read data in a table with "select" statements?
explain different types of jions with examples briefly?
2 Answers Accenture, Excellence, Zensar,
What functions can a view be used to performed?
Do you know how to make remote connection in database?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)