mysql 实现设置多个主键的操作

user表,身份证号码要唯一,手机号码,邮箱要唯一

实现方式:

表结构不用动。一个主键Id 加索引实现

如图类型设置索引类型为Unique 唯一 选择栏位,命个名就行。索引方式btree 就好。ok啦~

补充:mysql实现多表主键不重复

同一个数据库中有两张表,里面字段都是一样,只是因为存的数据要区分开。但是主键不能重复。具体实现如下:

新建数据库 mytest

新建user表和admin表

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;

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;

新建序列表:

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;

新增一个序列:

INSERT INTO sequence VALUES ('seq_test', '0', '1');

创建currval函数,用于获取序列当前值:

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;

查询当前值:

select currval('seq_test');

创建nextval函数,用于获取序列下一个值:

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;

查询下一个值

select nextval('seq_test');

具体实现:

<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>

<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>

最终实现:

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

以上是 mysql 实现设置多个主键的操作 的全部内容, 来源链接: utcz.com/p/230986.html

回到顶部