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 / kavitha neditunta
select WM_CONCAT(a||','||b)
from tablename;
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
what is log shipping? : Sql dba
Which tcp/ip port does sql server run on? How can it be changed? : Sql dba
What does the base_object_type column shows in the user.triggers data dictionary view?
Explain the difference between triggers and constraints?
What are the basic techniques of indexing?
What is pl sql script?
What is a database? Explain
How to install oracle sql developer?
Is left join faster than inner join?
What do you understand by pl/sql packages?
Define union, minus, union all, intersect ?
Define join and name different types of joins?
Lookups are a key component in sql server integration services (ssis). Explain its purpose?
How to run sql statements through the web interface?
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba