How create table structure only from tableA to TableB if
TableA have some data?
Answers were Sorted based on User's Feedback
Answer / sunny
to copy only the structure
select * into table2 from table1 where 1=2
to copy the table along with the records
select * into table2 from table1 where 1=1
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / karthik
Create table emp1
as
select * from emp
where 1=2
It will give the structure of the table.
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / mits
Create table newtablename
from oldtablename
where 1=2
Is This Answer Correct ? | 4 Yes | 6 No |
What are the advantages of user defined function?
What command do we use to rename a db?
What is a natural primary key?
Do you know how to implement service broker?
How to delete existing triggers using "drop trigger"?
How do you start single user mode in clustered installations?
What do you mean by authentication modes in sql server?
What command is used to delete a table from the database in the sql server and how?
What are trace flags?
what is difference between having and where clause ?
How to Run a Query on a Remote SQL Server?
What is the impact on other user sessions when creating indexes?