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 |
5. Display full details for the creditor/s who has received the single largest payment. Do not use a table join or set operator anywhere in your query.
How to find the duplicate rows count from employees table in oracle?
How to delete a column in an existing table in oracle?
What are data pump export and import modes?
Explain the use of tables option in exp command.
How to view existing locks on the database?
can u plz provide me oca sql dumps please i need them
What is difference between UNIQUE constraint and PRIMARY KEY constraint ?
what is load balancing and what u have used to do this?(sql loader)
I have a table like this Table Name:Products Productid Price 1 10 1 10 2 20 3 30 3 30 But i want to output like this. productid price 2 20. please replay me.
List the various oracle database objects?
What are the sql clauses supported in the link property sheet ?