I've searched for it but i can't find a conclusive answer to my question...
I need to know what is the storage size of a number(p) field in Oracle.
Examples: NUMBER(1), NUMBER(3), NUMBER(8), NUMBER(10) etc...
Is there a way to make an Oracle query behave like it contains a MySQL limit clause?
In MySQL, I can do this:
select *
from sometable
order by name
limit 20,10
to get the 21st to the 30th rows (skip the …