如何从Sqlite3检索行

如何从Sqlite3检索行,sqlite,Sqlite,当我有来自sqlite3的rowid元数据QLITE全局值时,如何从表中检索sqlite3中的行 SQLite中的ROWID是整数主键的别名 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 statemen

当我有来自sqlite3的rowid元数据QLITE全局值时,如何从表中检索sqlite3中的行

SQLite中的ROWID是整数主键的别名

       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)