我有一個iPhone應用程序,其中我有Content
表中的數據,並且有ContentAddedDateTime
表中的列,其中是日期時間ContentAdded
我想在查詢中選擇最近添加的內容ContentTable
任何想法如何得到這個。如何從iPhone應用程序最近日期的sqlite表中獲取數據
這是表結構:
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];
因爲對於不完整的問題,Downvote。無論您嘗試到目前爲止,您都必須共享代碼。隨時隨地處理問題。這裏沒有人想要爲你寫代碼。 – Tirth