ex. one table is having 1 column with 10 records ,
then how to display all the values in row wise ?
Answers were Sorted based on User's Feedback
Answer / dinesh a.
create table x (col1 number(4));
insert into x value(1);
....
...
insert into x value(10); /* upto 10 rows
then
select
substr(max(decode(rownum,1,col1,0)),1,2),
substr(max(decode(rownum,2,col1,0)),1,2),
substr(max(decode(rownum,3,col1,0)),1,2),
substr(max(decode(rownum,4,col1,0)),1,2),
substr(max(decode(rownum,5,col1,0)),1,2),
substr(max(decode(rownum,6,col1,0)),1,2),
substr(max(decode(rownum,7,col1,0)),1,2),
substr(max(decode(rownum,8,col1,0)),1,2),
substr(max(decode(rownum,9,col1,0)),1,2),
substr(max(decode(rownum,10,col1,0)),1,2)
from x
(where substr only to reduce display size )
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ruchi varma
it will need a cursor.
begin
for cur1 in (select a from Name) loop
dbms_output.put(cur1.a);
end loop;
end;
dbms_output.put -> displays a chr without putting a new line
| Is This Answer Correct ? | 0 Yes | 1 No |
Youre getting high busy buffer waits - how can you find whats causing it?
What happens if variable names collide with table/column names?
Can group functions be mixed with non-group selection fields?
What is the implicit cursor in oracle?
Define Transaction ?
can we insert any row to dual table if i got the permission from DBA
How would you design a database for an e-commerce website?
how to get required data from oracle source is like this ram_05_seetha lax_05_viswa bamr05frummy run_01_away sw_sas_trim i want my target data like ram_05_seetha lax_05_viswa to get data using %_05_% but it will give ram_05_seetha lax_05_viswa bamr05frummy how can i get my target data?
How to increment dates by 1 in oracle?
What is the difference between Outer join and Full outer join?
Explain integrity constraint?
How to define an oracle cursor variable?