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 cannot select a row like that. You have to specify a field whose values will be 3
Here is a query that will work, if the field you are comparing against is id
id
select * from customer where `id` = 3