如果想要给每个用户一个七或者更多位数的uid,可以在用户表中设置id为自增,并且设置初始值

1.创建表时指定

CREATE TABLE user(
    -- 建表语句
)AUTO_INCTEMENT=自增值;
例如

create table user
(
    id          int unsigned primary key auto_increment comment 'ID',
    phone_num    varchar(20) not null unique comment '手机号',
    username    varchar(20)  comment '用户名',
    create_time datetime      comment '创建时间',
    update_time datetime      comment '修改时间'
)auto_increment=1000001, comment '用户表';

2.如果表已经存在,可以通过sql命令指定

ALTER TABLE [表名] AUTO_INCREMENT=自增值;
 

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐