How to swap the data of two columns in a table. both the
columns containing varchar values.
Answers were Sorted based on User's Feedback
Answer / ami tkumar
Sorry for previous answer.
DECLARE @temp AS varchar(50)
UPDATE swapdata SET @temp=value2,value2=value1,value1=@temp
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / mysql
sorry guys, all ur answers are not working properly.
Try to answer in one sql statement.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / dinesh
select menu from (select m_name as menu from m_master) a
union select m_name as menu from db2 .dbo.m_master
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / 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 |
Answer / san
create table san(empid int,empname varchar(10))
insert into san values(1'san')
update san set empid=empname,empname=empid
Is This Answer Correct ? | 0 Yes | 3 No |
Answer / sandeep rana
create table tmp_t
(
aa varchar2(50),
bb varchar2(50)
)
--insert into tmp_t values('1','5')
select * from tmp_t
update tmp_t set aa=bb , bb=aa
Is This Answer Correct ? | 7 Yes | 12 No |
How to find the login name linked to a given user name?
What are the steps you can take to avoid “deadlocks”?
Explain the microsoft sql server delete command?
How to work on DTS?what is the main requirement?
In performance wise distinct is good or group by is good? eg:select name from emp group by name; select distinct name from emp;
what information is maintained within the msdb database? : Sql server administration
How to know the NAME of the Database and SIZE of the Database at the client node in Sql Server 2005
can an order by clause be used in a creation of a view?
What are .mdf files?
What are the basic functions for master, msdb, model, tempdb databases?
What do you understand by the analysis services in sql server?
What is Check point? Explain in Brief what it will do?