当我从sqlite3获得rowid元数据(sqlite global val)时,如何从表中检索sqlite3中的行?
答案 0 :(得分:0)
SQLite中的ROWID是“INTEGER PRIMARY KEY”的别名。
select * from myTable where foo = {the rowid value in question}
(where foo is the name you have given to the integer primary key column in the CREATE TABLE statement)