79630488

Date: 2025-05-20 13:01:56
Score: 2.5
Natty:
Report link

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 = ?
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: André