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 ? | 6 Yes | 1 No |
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba
What is the syntax and use of the coalesce function?
What is a string data type in sql?
In table three columns with 1 milion records(here there is no sequence values) i want add one more column with sequence values from the first how it is posible?
What is a transaction?
Can we use joins in subquery?
How to convert ms-excel file to oracle table?
What is a memo field?
a procedure one in two out parameters i am waiting it in a sql query can i get the output
What is a mutating table
What is the use of stored procedures?
what is heap table? : Sql dba