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 is posting?
What is a scalar value in sql?
Difference between table function and pipelined function?
Is a foreign key always unique?
What is parameter substitution in sql?
How can we make an if statement within a select statement?
What is compiled query?
Is sql a scripting language?
How can you create an empty table from an existing table?
What is the maximum number of columns in sql table?
How do I save a sql query?
Explain what is a column in a table?
Can we enter data in a table in design view?
Who developed sql?
In what condition is it good to disable a trigger?