2011-08-30 4 views

답변

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) 
관련 문제