How to swap the data of two columns in a table. both the
columns containing varchar values.
Answer Posted / dinesh
select names from
(select full_name as names from table 1) a
union
select full_name as names from table 2
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is meant by indexing files?
What are the different types of join?
What is log ldf?
What happens if null values are involved in string operations?
What is the purpose of grouping data in a report?
Explain the stored procedure?
What do you understand by recursive stored procedure?
How do I create a trace in sql server?
Suppose you want to implement the following relationships while designing tables. How would you do it?a.) One-to-oneb.) One-to-manyc.) Many-to-many
What are locks in sql?
How you can change the database name in SQL SERVER?
What is an indexing strategy?
What are the export options of ssrs?
How can you insert values in multiple rows using one Insert statement?
What are the advantages of user defined function?