SQLite Forum

Does table have rowid?
Login
This table has a rowid, but there's no way to access it:

~~~
create table corner_case (
    rowid real,
    _rowid_ real,
    oid real);
~~~

For slicing the result of a SELECT, use LIMIT and OFFSET.