Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select field1 from table where rownum < 25
minus
Select field1 from table where rownum < 10
Select * from (select field1 from table order by field1) where rownum < 25
minus
Select * from (select field1 from table order by field1) where rownum < 10
1 select * from (select translate(empl_nm,'abcdefghijklmnopqrstuvwxyz','poiuytrewqasdfghjklmnbvcxz'cd where empl_stat_cd = 'A' order by cmptn_rt desc)
3* where rownum < 11
SQL> /
CD CMPTN_RT
-------------------------------------------------- ----------
Last1, First, MI 51.93
Last2, First, MI
51.91
Last3, First, MI
51.9
Last4, First, MI
51.89
Last5, First, MI
51.89
Last6, First, MI
51.89
Last7, First, MI
51.89
Last8, First, MI
51.89
Last9, First, MI
51.89
Last10, First, MI
51.89
10 rows selected.