我有一个 iPhone 应用程序,其中表中有数据,Content
表中有列,我想在查询中选择ContentAddedDateTime
的日期时间是ContentAdded
最近添加的内容,ContentTable
不知道如何获取它。
这是表结构:
NSInteger contentID;
NSString*categoryID;
NSString*topicID;
NSString*contentType;
NSString*contentTitle;
NSString*contentAddedByUserID;
NSString*contentDescription;
NSString*contentFileName;
NSString*categoryName;
NSString*topicName;
NSString*contentSavedFileLocation;
NSString*contentSize;
NSString*contentAddedDateTime;
我得到了我们可以使用开始日期和结束日期的链接,但我只有一列ContentAddedDateTime
。
select = [[NSString alloc] initWithFormat:@"select * FROM ContentMaster Where ContentAddedDateTime='%@'",currentDateTime];