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 do you mean by table in sql?
What is the use of sqldataadapter?
What is the importance of sqlcode and sqlerrm?
How do I save a sql query?
what are wild cards used in database for pattern matching ? : Sql dba
Explain ddl statements in pl/sql?
What is sql used for?
What are user defined functions?
what are all the different types of indexes? : Sql dba
How can I speed up sql query?
Is join an inner join?
How do you truncate?
what is a foreign key ? : Sql dba
What is data type in sql?
What is sql injection owasp?