take one table is t1 and in that column name is f1
f1 column values are
200
5000
3000
7000
300
600
100
400
800
400
i want display the values asc and desc in a single output.
sample output is
f1.a
100
200
300
400
500
600
etc......
and f1.d is
5000
4000
3000
2000
1000
etc...
Answer Posted / innaci
select a,d from (select a,d,rownum as n from (select f1.a,
f2.d from
(select f1 as a from sample1 order by 1) f1,
(select f1 as d from sample1 order by 1 desc) f2) temp)
temp1 where mod(n,(select count(f1) from sample1)+1)=1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what does it mean to have quoted_identifier on? : Sql dba
what are null values? : Sql dba
Is like operator in sql case sensitive?
What is normalization in sql?
What are procedures used for?
What do you understand by pl/sql cursors?
what is sql in mysql? : Sql dba
What are the types of sql commands?
What are the different dcl commands in sql?
Can triggers stop a dml statement from executing on a table?
What is the usage of sql functions?
What is a composite primary key?
Is join and inner join the same?
What is dialect in sql?
What is the difference between syntax error and runtime error?