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”字段,并使用这些 ID 完成我的 PHP 工作。
喜欢;
id Username 1 User1 2 User2 3 User3
PHP 是这样工作的;
show_member_details.php?memberID=3
ID 字段始终设置为自动递增。
在大型项目/表上依赖 MySQL 的自动增量功能是否安全?就像一个表中的一百万个条目?
是的,您可以将其定义为 AUTO INCREMENT。
您需要将 ID 字段定义为 BIGINT,其范围为 0 到 18446744073709551615。
FOR 安全地显示在 url 中,您可以对其进行加密。