时间:2021-05-02
user表,身份证号码要唯一,手机号码,邮箱要唯一
表结构不用动。一个主键id 加索引实现
如图类型设置索引类型为unique 唯一 选择栏位,命个名就行。索引方式btree 就好。ok啦~
补充:mysql实现多表主键不重复
同一个数据库中有两张表,里面字段都是一样,只是因为存的数据要区分开。但是主键不能重复。具体实现如下:
新建user表和admin表
? 1 2 3 4 5 6 7 8 9 10 create table `user` ( `user_id` int(11) not null, `user_name` varchar(255) not null, `password` varchar(255) not null, `phone` varchar(255) not null, primary key (`user_id`) ) comment='用户表' collate='utf8_general_ci' engine=innodb; ? 1 2 3 4 5 6 7 8 9 10 create table `admin` ( `user_id` int(11) not null, `user_name` varchar(255) not null, `password` varchar(255) not null, `phone` varchar(255) not null, primary key (`user_id`) ) comment='管理员表' collate='utf8_general_ci' engine=innodb;新建序列表:
? 1 2 3 4 5 6 7 8 9 create table `sequence` ( `seq_name` varchar(50) not null, `current_val` int(11) not null, `increment_val` int(11) not null default '1', primary key (`seq_name`) ) comment='序列表' collate='utf8_general_ci' engine=innodb;新增一个序列:
? 1 insert into sequence values ('seq_test', '0', '1');创建currval函数,用于获取序列当前值:
? 1 2 3 4 5 6 7 8 9 delimiter # create function currval(v_seq_name varchar(50)) returns integer(11) begin declare value integer; set value = 0; select current_val into value from sequence where seq_name = v_seq_name; return value; end;查询当前值:
? 1 select currval('seq_test');创建nextval函数,用于获取序列下一个值:
? 1 2 3 4 5 6 delimiter # create function nextval (v_seq_name varchar(50)) returns integer(11) begin update sequence set current_val = current_val + increment_val where seq_name = v_seq_name; return currval(v_seq_name); end;查询下一个值
? 1 select nextval('seq_test');具体实现:
? 1 2 3 4 5 6 7 <insert id="adduser" parametertype="user"> <selectkey keyproperty="userid" resulttype="int" order="before"> select nextval('seq_test'); </selectkey> insert into user(user_id,user_name,password,phone) values (#{userid},#{username, jdbctype=varchar},#{password, jdbctype=varchar}, #{phone, jdbctype=varchar}) </insert> ? 1 2 3 4 5 6 7 <insert id="addadmin" parametertype="admin"> <selectkey keyproperty="userid" resulttype="int" order="before"> select nextval('seq_test'); </selectkey> insert into admin(user_id,user_name,password,phone) values (#{userid},#{username, jdbctype=varchar},#{password, jdbctype=varchar}, #{phone, jdbctype=varchar}) </insert>最终实现:
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。
原文链接:https://blog.csdn.net/qq_39930369/article/details/86687285
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了mysql非主键自增长用法。分享给大家供大家参考,具体如下:mysql并非只有主键才能自增长,而是设为键的列就可以设置自增长。如下:CREATET
MySQL实现类似Oracle的序列Oracle一般使用序列(Sequence)来处理主键字段,而MySQL则提供了自增长(increment)来实现类似的目的
区别:1、主键,Oracle不可以实现自增,mysql可以实现自增。oracle新建序列,SEQ_USER_Id.nextval2、索引:mysql索引从0开始
主关键字(以下简称主键)是表中的一个或多个字段,它的值用于唯一地标识表中的某一条记录。如何给表设置主键呢?特别是有多个字段共同作为主键的,该如何设置呢?下面小编
两大类索引使用的存储引擎:MySQL5.7InnoDB聚簇索引*如果表设置了主键,则主键就是聚簇索引*如果表没有主键,则会默认第一个NOTNULL,且唯一(UN