SQLite automatically assigns a unique ROWID
to each row unless you define your own primary key. You can get the ROWID
of a specific row via
SELECT ROWID FROM table_name WHERE column_name = ?
Afterward, get your data by ROWID
via
SELECT * FROM table_name WHERE ROWID = ?