DBA > Job Interview Questions > DATABASE Administrator (DBA) Interview Questions and Answers

How will you copy the structure of a table witho

More DBA job interview questions and answers at http://dba.fyicenter.com/Interview-Questions/

(Continued from previous question...)

121. How will you copy the structure of a table without copying the data?

Answer1
create table xyz
as ( select * from abc where 1=0)

Answer2
create table New_tbl as select * from Old_tbl where rownum

Answer3
select top 0 * into xyz from try

(Continued on next question...)

Other Job Interview Questions