我有一個用表名「Accounts」創建的數據庫有三列。一個被命名爲userId
,另一個被命名爲accountType
。第三個帳戶是accountId
我想創建功能是從Sqlite查詢數據庫獲取項目
private int getNextAccountIdForUserId (String ourUserId, int ourAccountType)
{
int nextId = kFirstIDValue;
Cursor mCursor = mDb.query(true, ACCOUNT_TABLE, new String[] {"userId", accountType},"accountId", null, null, null, null, null);
...
//what more to do to get the accountId of ourUserId and ourAccountType
}
我想檢索我已經定義的特定ACCOUNTTYPE和用戶id的帳戶ID。請告訴正確的所用查詢的合成者。