how can ur insert the emp table

Answers were Sorted based on User's Feedback



how can ur insert the emp table..

Answer / kumar

Alredy We are having the emp table in our database at the
time only we can insert the data otherwise not possible.

We can insert the data into emp table into 2 ways by using insert command.Two syntax of insert command given below

1.insert into tablename values(<values list>)
2.insert into tablename(<column list>) values(<spcified column values >)

Is This Answer Correct ?    36 Yes 0 No

how can ur insert the emp table..

Answer / ammuk221

insert into emp values(serialno,'emp
name','hiredate',emppost,salary,deptno,commission);

Is This Answer Correct ?    12 Yes 7 No

how can ur insert the emp table..

Answer / madhav

BY USING 'ON THE FLY TABLES'
CREAT TABLE EMPLOYEE AS SELECT * FROM EMP WHERE 1=2;
(FOR TABLE STRUCTURE)
-----TO INSERT THE EMP TABLE VALUES-------
INSERT INTO EMPLOYEE(SELECT * FROM EMP);
(INSERT THE EMP TABLE DATA)
SELECT * FROM EMPLOYEE;

-----------ALL THE BEST-------------

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

Mention the different types of replication in sql server.

0 Answers  


What is 'Join' and explain its various types.

0 Answers   Genpact,


How to tune a stored procedure?

6 Answers  


What is the difference between insensitive and scroll cursor?

0 Answers  


Do you know the isolation level that sql server support?

0 Answers  






What is the difference between cartesian product and cross join?

0 Answers  


Define inner join? Explain with an example?

0 Answers  


Which Model uses the SET concept

0 Answers   Infosys,


What is self contained scalar sub query?

0 Answers  


create index myindex on mytable(mycolumn) what type of index will get created after executing the above statement? : Sql server database administration

0 Answers  


Mention the uses of stored procedures.

0 Answers  


What are the restrictions applicable while creating views? : SQL Server Architecture

0 Answers  


Categories