Wednesday, May 17, 2017

CONNECT BY LEVEL <=10

SELECT LEVEL  ID,'apple' NAME , 'red'   color,  1       quantity FROM dual CONNECT BY LEVEL <=10


ID NAME  COL   QUANTITY
-- ----- --- ----------
 1 apple red          1
 2 apple red          1
 3 apple red          1
 4 apple red          1
 5 apple red          1
 6 apple red          1
 7 apple red          1
 8 apple red          1
 9 apple red          1
10 apple red          1

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...