我有在其中插入数据的 iPhone 应用程序。当我在没有任何条件的情况下获取所有数据时它工作正常然后如果给定任何条件它工作正常
以下查询则不显示任何内容。
NSString *select =
[NSString stringWithFormat:
@"SELECT * from ContentMaster As ml
LEFT JOIN ContentTagging As cat
ON cat.ContentID = ml.ContentID
where cat.ContenTagText= \'%@\'" ,appDelegate.tagInput];
const char *sql = [select UTF8String];
如果我使用它,它不会显示任何使用它的东西,select * form ContentMaster
那么它会显示所有添加的记录。