what is the syntax of INSERT command?

Answers were Sorted based on User's Feedback



what is the syntax of INSERT command?..

Answer / mahaveer kumar h.v.

INSERT INTO table_name (Col_name1,Col_name2,Col_name3...)
VALUES (Col_value1,Col_value2,Col_value3...);

Is This Answer Correct ?    4 Yes 0 No

what is the syntax of INSERT command?..

Answer / raja

WE HAVE USE EMP TABLE INSERT COMMAND
1.INSERT INTO EMP(EMPNO,ENAME...)
VALUES(7839,'RAM')
2.INSERT INTO EMP VALUES(&EMPNO,'&ENAME',....)
3.INSERT INTO EMP (EMPNO)
VALUES(7900)

Is This Answer Correct ?    3 Yes 0 No

what is the syntax of INSERT command?..

Answer / shree

INSERT INTO table_name (Col_name1,Col_name2,Col_name3...)
VALUES (Col_value1,Col_value2,Col_value3...)

Is This Answer Correct ?    3 Yes 1 No

what is the syntax of INSERT command?..

Answer / subba rao

INSERT COMMAND CAN BE USED IN TWO WAYS

1.TO INSERT ALL VALUES INTO TABLE : VALUES INSERT INTO
<TABLE NAME> VALUES
(<COL_VALUE1>,<COL_VALUE2>...<COL_VALUEN>)

2.TO INSERT INTO SPECIFIED VALUES : INSERT INTO <TABLE
NAME> (<COL_NAME1>,<COL_NAME2>...<COL_NAMEN>)VALUES
(<COL_VALUE1>,<COL_VALUE2>...<COL_VALUEN>)

Is This Answer Correct ?    2 Yes 0 No

what is the syntax of INSERT command?..

Answer / arkchowdary

we use Dept table or Any table Insert Command

Insert into dept(Dname,deptno,location.....)values
('Darway',30,'Sweadon');

Or

Insert into dept values('&dname',deptno,'&location'....)

Is This Answer Correct ?    2 Yes 0 No

what is the syntax of INSERT command?..

Answer / vara prasad vizag

Syntax:
INSERT INTO <Table-Name> ( Col1,Col2....)
VALUES(Val1,Val2...);

Example:
INSERT INTO StudentInfo (Studno,Fname,Lname,DOB,DOJ, Gender)
VALUES(1234,'Varaprasad','Vizag','17-Nov-85','M');

Is This Answer Correct ?    0 Yes 0 No

what is the syntax of INSERT command?..

Answer / pushkar

INSERT INTO TABLE
VALUES (VAL1,VAL2,VAL3,...)

Note: SPECIFY THE RIGHT NUMBER OF COLUMNS AND THE
appropriate null values by writing "NULL" .

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle General Interview Questions

Which is better Oracle or MS SQL? Why?

2 Answers   Bally Technologies,


how to store only time in a data base table

2 Answers  


What is a read only transaction in oracle?

0 Answers  


How to rename a tablespace in oracle?

0 Answers  


What is the difference between sharding and partitioning?

0 Answers  






There are three tables : E : EID,ENAME D : DID,DNAME empdept : eid, did select the employees who doesn't belong to any dep

4 Answers   Microsoft,


What is Database Trigger ?

1 Answers  


Which environment variables are absolutely critical in order to run the OUI?

0 Answers  


What is Virtual Private Database in Oracle?

0 Answers   MCN Solutions,


How to add a new column to an existing table with a default value?

0 Answers  


What is truncate oracle?

0 Answers  


Display those managers salary greater than the average salary of his employees?(Based on oracle standard Emp table)

6 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)