have table with two columns with datatypes as number and
varchar and the values in
A column like 1,2,3 AND B column values like a,b,c.
now need to display data in a single column as 1,a,2,b,3,c.
Answer Posted / vi.s.senthilkumar
select column1||','||column2 result from tableName;
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What are tables in sql?
how to load data files into tables with 'mysqlimport'? : Sql dba
What is the difference between left and left outer join?
What are the advantages of pl sql over sql?
what is 'mysqlimport'? : Sql dba
How many sql statements are used?
What does count (*) do in sql?
Does sql full backup truncate logs?
Can we call a function containing dml statements in a select query?
What is pl/sql table? Why it is used?
How to read xml file in oracle pl sql?
What are operators available in sql?
What is microsoft t sql?
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
What is the difference between delete and truncate statement in sql?