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.
只是一个想法,如果我在 db 表中的主键值为 0,会有什么问题吗?比如性能问题、安全性、冲突等。
+-------+---------+ | key | value | +-------+---------+ | 0 | a | | 1 | a | | 2 | ab | +-------+---------+
除非有使用 0 的实际原因,否则我会省略它,以便您可以对值进行简单的真实性测试。你不是在做一个自动递增的主键(通常从 1 开始)吗?
这应该不会造成任何问题...