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.
有没有办法在 sql 中设置一个 8 位(例如 8 个)唯一 ID,它取决于当前日期和时间?
我在我使用的一个软件上看到了这一点,并被告知可以在 SQL 中生成它。
有没有人这样做过?
谢谢皮特
也许您需要一个 TIMESTAMP 类型的列。
可以使用 BETWEEN 运算符和 DATEADD 函数在 WHERE 子句中查找时间。
WHERE TimeStampColumn BETWEEN DATEADD(ss, -1 * Interval, DesiredTime) AND DATEADD(ss, Interval, DesiredTime)