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 |
Explain the difference between drop and truncate commands in sql?
What does the argument [or replace] do?
How to add a column ‘salary’ to a table employee_details?
What is an exception in PL/SQL? What are the two types of exceptions?
2. Select A.A from ( select 1 as from dual Union select 1 as from dual)A Full outer join ( select 1 B from dual Union select 2 B from dual)B On A.A=B.B
What operators deal with null?
can i use global variables in stored procedure or function
What are database links used for?
declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?
What is the best strategy to use COMMIT in a pl/sql loop?
What is rowid in sql?
How can I change database name in sql?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)