ios - 在 iOS 中工作 'order by date' 查询所需的日期格式
<p><p>我在 <strong>我的 iOS 应用程序的 SQLite 中存储数据列表</strong>。在 DB 中,“addOn”一列以“30-Jul-2014 07:43:20”格式存储来自<strong>服务器响应的日期。</strong>
在这里,我在“addOn”列上尝试了很多东西,但无法按 ASC/DESC 顺序获取日期。
其他一些细节是</p>
<ol>
<li>“addOn”列的日期类型为 DATETIME。</li>
<li>尝试在 DESC 中获取的查询是:</li>
</ol>
<p><code>"SELECT * FROM tableName ORDER BY datetime(addOn) DESC LIMIT 1"
& "SELECT * FROM tableName ORDER BY date(addOn) DESC LIMIT 1"& "SELECT * FROM tableName ORDER BY addedOn DESC LIMIT 1"。</code></p>
<p>但是所有这些查询都没有给我预期的结果。 </p>
<ol 开始=“3”>
<li><p>我尝试将此日期转换为另一种格式,同时将其插入数据库中,但将此日期格式转换为其他日期格式,例如 <code>'yyyy-MM-dd HH:mm:ss'</code> 根本不工作。 <strong>对于以下代码:</strong></p>
<p>NSString *dateString = @"30-Jul-2014 07:43:20";
NSDateFormatter *dateFormatter = [ init];
;
NSDate *dateFromString = [ init];
dateFromString = ;</p>
<pre><code>NSString *stringDate = ;
NSLog(@"stringDate %@", stringDate);
</code></pre> </li>
</ol>
<p>所以我的问题是可以将这种类型格式转换为任何其他格式,或者还有什么我遗漏的东西。请分享您的想法并建议我需要做的更改。任何帮助表示赞赏。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的 dataFormat 似乎有误。试试下面的 DateFormat。</p>
<pre><code>;
NSDate *date = ;
</code></pre>
<p>这将为您提供准确的日期。</p>
<p>希望对你有帮助..</p></p>
<p style="font-size: 20px;">关于ios - 在 iOS 中工作'order by date' 查询所需的日期格式,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37024564/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37024564/
</a>
</p>
页:
[1]