Table of Contents

SQLite - Row

About

A page about all row scope subject in Sqlite.

RowID

Sqlite has an internal rowid

Row Number

The row_number() function window function returns the id of the row

(ie It's not the ID in the table).

Example:

select ROW_NUMBER() over (), * from myTable;

Same as How to use the SQL ROW_NUMBER function?