Select 1 from dual UNION Select 'A' from dual;
In SQL it shows error Dual is not found any table
But without dual
Select 1 UNION Select 'A'
Number of Records: 2 1 1 A
How many rows will the following SQL return :
Select * from emp Where rownum = 10;
Select * from emp Where rownum < 10;
which of the following is better to find the number of rows in a table? 1. count(1) 2. count(*) 3. count(rowid)