How create table structure only from tableA to TableB if
TableA have some data?
Answer Posted / mits
Create table newtablename
from oldtablename
where 1=2
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is indexed view?
How do I create a stored procedure in sql server?
What are the essential components of sql server service broker?
Explain user defined views?
How to use user defined functions in expressions?
What are the types of normalization?
What is the advantage of sql server?
What is SQL Azure?
What options are there to delete rows on the publisher and not on the subscriber? : sql server replication
How to connect php with different port numbers?
When do you think a developer should use sql server-based cursors?
How would you choose between a clustered and a non-clustered index?
How does stuff differ from the replace function?
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.
You are creating an application where users are asked their gender in the gender combo box you have three options: ‘male’ , ‘female’ and ‘i choose not to disclose’ these options are stored in the table as 1, 0 or null which datatype should you use?