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.
我有一个带有“日期”字段的 MySQL 表。我正在尝试按日期对条目进行排序,如果同一天有更多条目,那么我需要按时间戳对它们进行排序。问题是我的“日期”字段只存储日期,我没有时间戳字段,我不想添加它,因为表中已经填充了数千个条目。
是否可以通过时间戳对它们进行排序,我不知道,可能来自 sql 字典或其他什么?
谢谢你。
不,这是不可能的。你不能对不存在的东西进行排序。
通过添加新列解决..