I'm learning database. I came across LIMIT
keyword and its usage.
In some tutorial it was specified as
LIMIT row_number OFFSET n
will select row_number of rows after skipping n rows
And in another tutorial it was written as
LIMIT offset, row_number
will select row_number of rows after skipping offset rows
Now which syntax is correct, if both are correct then where to use what?