Write a pl/sql script to display the following series of numbers: 99,96,93……9,6,3?



Write a pl/sql script to display the following series of numbers: 99,96,93……9,6,3?..

Answer / bhavya

Select
Listagg(rownum*3, ', ') within group (order by rownum desc)
From dual
Connect by level<=100/3;

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

What is a full join sql?

0 Answers  


what are different types of keys in sql?

0 Answers  


If you have to declare procedure1,procedure2 in package specification and if you have to declare procedure1,procedure2 and procedure3 in package body? is it compilation or not and execute or not? what type of error is given please

1 Answers  


What is Primary Key?

4 Answers   Ramco,


What are the disadvantages of not performing database normalization?

0 Answers  






What is the difference between explicit and implicit cursors in oracle?

0 Answers  


What are the types of keys?

0 Answers  


How do you optimize a query?

0 Answers  


How long it takes to learn pl sql?

0 Answers  


Explain the types of joins in sql?

0 Answers  


Show the cursor attributes of pl/sql.

0 Answers  


How to access the current value and next value from a sequence?

6 Answers  


Categories