如何从Sqlite3中检索行

时间:2011-08-30 13:19:35

标签: sqlite

当我从sqlite3获得rowid元数据(sqlite global val)时,如何从表中检索sqlite3中的行?

1 个答案:

答案 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)