Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我有一个包含多个值的表。现在我想知道哪个元组是最旧的(插入表中的所有元组中的第一个)。有什么办法知道吗?
根据您的表结构,您有多种选择。由于缺少这一点,因此很难为您提供帮助。我的猜测是按时间戳或 id 排序并得到最旧的。
实现此目的的最佳方法是,如果您的表中有一个datetime或timestamp列,其中包含记录插入的日期。然后,您可以参考该日期列并获取最旧的记录。
datetime
timestamp
其他方式,可能不准确;是按有限制的字段排序;像
SELECT * FROM your_table WHERE value='value1' ORDER BY field1 LIMIT 1