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.
Answers were Sorted based on User's Feedback
Answer / kavitha neditunta
select WM_CONCAT(a||','||b)
from tablename;
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / prativa mishra
select rtrim(xmlagg(xmlelement("c",A||' ,'||B||',')).extract('//text()'),',') single_column
from table_name
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / krishna
select rtrim(xmlagg(xmlelement(E,
EMPID||','||NAME||','||'')).extract('//text()') ,',')
empid from emp1
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / sunaksha
select listagg( A||','||B || ',') within group (order by A) from table_name;
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / saravanan
Try this way!
create table stest(num int,name varchar(10),value numeric
(10,2));
insert into stest values(101,'SARAN',1000.58);
insert into stest values(102,'KALA',1200.18);
insert into stest values(103,'AYYA',3000.40);
insert into stest values(104,'RATNA',4000.57);
SELECT * FROM STEST;
declare @str varchar(2000);
set @str = null;
select @str=ISNULL(@str+',','')+ltrim(STR(num))+','+name
from stest
select @str;
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / prativa mishra
select rtrim(xmlagg(xmlelement("c",A||' ,'||B||',')).extract('//test()'),',') single_column
from table_name
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sona mathew
select listagg(c1||','||c2,',')
within group (order by c1||','||c2)
from tab;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vi.s.senthilkumar
select column1||','||column2 result from tableName;
Is This Answer Correct ? | 2 Yes | 3 No |
What is the difference between CHAR and VARCHAR2? If VARCHAR2 serves the uses of CHAR why CHAR is still used and not been discarded yet?
How would you go about increasing the buffer cache hit ratio? 0. Explain the difference between a hot backup and a cold backup and the benefits associated with each 1. You have just had to restore from backup and do not have any control files. How would you go about bringing up this database? 2. How do you switch from an init.ora file to a spfile? 3. Explain the difference between a data block, an extent and a segment. 4. Give two examples of how you might determine the structure of the table DEPT. 5. Where would you look for errors from the database engine? 6. Compare and contrast TRUNCATE and DELETE for a table. 7. Give the reasoning behind using an index. 8. Give the two types of tables involved in producing a star schema and the type of data they hold. 9. What type of index should you use on a fact table? 10. Give two examples of referential integrity constraints. 11. A table is classified as a parent table and you want to drop and re-create it. How would you do this without affecting the children tables? 12. Explain the difference between ARCHIVELOG mode and NOARCHIVELOG mode and the benefits and disadvantages to each. 13. What command would you use to create a backup control file? 14. Give the stages of instance startup to a usable state where normal users may access it. 15. What column differentiates the V$ views to the GV$ views and how? 16. How would you go about generating an EXPLAIN plan?
What are the two types of exceptions.
Which one is faster ienumerable or iqueryable?
Is foreign key mandatory?
What are the differences between in and exists clause?
What is pl sql and why it is used for?
Explain the usage of WHERE CURRENT OF clause in cursors ?
What does pl sql stand for?
What are operators available in sql?
What type of join is sql join?
How to handle bulk data?