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 are sub-queries? Give example? In which case sub-queries are not feasible?
OPTIMIZATION OF SP,CURSOR,TRIGGERS
What is user-defined inline table-valued function?
what is meant by sql injection with example and one more question how to catch the errors in sqlserver
Is it ok to shrink transaction log?
How can you insert null values in a column while inserting the data?
How do I change my passwords (database, LDAP, and so on) without causing an outage?
What is difference between rollback immediate and with no_wait during alter database?
How to rename an existing column with the "sp_rename" stored procedure in ms sql server?
Tell me about Triggers?
Explain few examples of RDBMS?
What are the differences between INNER JOIN, LEFT JOIN and RIGHT JOIN in SQL Server?
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)