您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在mysql中設置多個主鍵,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
實現方式:
表結構不用動。一個主鍵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>
以上就是怎么在mysql中設置多個主鍵,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。