-1
iPhone 目前,我寫我這樣的查詢XCODE 4.3.2在SQL LITE如何寫 '喜歡' 關鍵字
RS = [DB的executeQuery:@「SELECT * FROM FORMDATA其中flgActive = 1和名字一樣?「,filtercondition];
這個上面的查詢只會在我們寫全名時顯示數據。
我想如果'a'就像關鍵字那麼所有帶'a'的名字都應該取數據。
iPhone 目前,我寫我這樣的查詢XCODE 4.3.2在SQL LITE如何寫 '喜歡' 關鍵字
RS = [DB的executeQuery:@「SELECT * FROM FORMDATA其中flgActive = 1和名字一樣?「,filtercondition];
這個上面的查詢只會在我們寫全名時顯示數據。
我想如果'a'就像關鍵字那麼所有帶'a'的名字都應該取數據。
NSString *searchfilter = [NSString stringWithFormat:@"%@*",@"a"];
strValue = [NSString stringWithFormat:@"SELECT * FROM YuurTable where FirstName like[c] %@", searchfilter];
U可以用 「一」 直接也在狀態,
這些底線是不可以使用的ü
const char *sql = [strValue UTF8String];
NSString *requireddata=[NSString stringWithUTF8String:(char *)sqlite3_column_text(selectAllStmt, 3)];
嘗試此查詢,
NSString stringWithFormat:@"SELECT * from FormData where flgActive=1 and FirstName like %@%%",prefixString];