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 |
What do you know about system database? : SQL Server Architecture
What are the five major components of a dbms?
What is the significance of master, tempdb and model databases?
How many partitions a clustered index has by default in sql server 2012?
Tell me what is difference between view and materialized view?
How to start and end transact-sql statements?
What is Service Broker in sql server 2012?
How to implement one-to-one, one-to-many and many-to-many relationships while designing tables?
Explain active/passive and active/active cluster configurations?
What is merge replication?
Explain sub-query?
What is a file group?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)