我需要在 Objective-C 中使用带有 NSArray 的 IN 子句来执行 Select 语句。像这样的东西
NSArray *countries = [NSArray arrayWithObjects:@"USA", @"Argentina", @"England", nil];
if(sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) {
const char *sqlStatement =
[[NSString stringWithFormat:@"select currencies from money where country IN countries] UTF8String];
....
其中 IN countries 是带有字符串值的 NSArray。这可能吗?