Ideally I need a query that is equivalent to
select * from customer where row_number() = 3
but that\'s illegal.
I can\'t u
You can add an auto generated id field in the table and select by this id
SELECT * FROM CUSTOMER WHERE CUSTOMER_ID = 3;