mysql在建表的时候就建索引

create table table_name
(
    id int not null auto_increment primary key,
    created_at timestamp default current_timestamp,
    national_id varchar(18),
    user_id int,
    INDEX(user_id)
);

这样建的索引名为user_id,字段也是user_id,索引类型normal,索引方法BTREE

留言

熱門文章