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.
我需要生成一个输入掩码,以便使用 php 在 mysql 数据库中注册用户。我需要生成像“U* * ”这样的主键,其中 * 是从 0001 开始的数字。请问有什么建议吗?
只需创建带有前缀的表
CREATE TABLE tablename ( id INT NOT NULL AUTO_INCREMENT, prefix CHAR(30) NOT NULL, PRIMARY KEY (id, prefix),
这适用于 MyISAM,而不适用于 InnoDB 表类型。
插入查询将是这样的
INSERT INTO tablename (prefix) VALUES ('U')