user表,身份证号码要唯一,手机号码,邮箱要唯一 实现方式: 表结构不用动。一个主键Id 加索引实现 如图类型设置索引类型为Unique 唯一 选择栏位,命个名就行。索引方式btree 就好。ok啦~ 补充:my
user表,身份证号码要唯一,手机号码,邮箱要唯一
表结构不用动。一个主键Id 加索引实现
如图类型设置索引类型为Unique 唯一 选择栏位,命个名就行。索引方式btree 就好。ok啦~
补充:mysql实现多表主键不重复
同一个数据库中有两张表,里面字段都是一样,只是因为存的数据要区分开。但是主键不能重复。具体实现如下:
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>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持自学编程网。如有错误或未考虑完全的地方,望不吝赐教。
--结束END--
本文标题: mysql 实现设置多个主键的操作
本文链接: https://lsjlt.com/news/10165.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0