您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“mysql怎么創(chuàng)建表設(shè)置表主鍵id從1開始自增”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
當(dāng)我們在做項(xiàng)目的時(shí)候,創(chuàng)建一張用戶表,如何讓該表的主鍵id從0開始自增?網(wǎng)上搜索了很多解決方案,最后發(fā)現(xiàn)了一種方法必實(shí)現(xiàn)且有效的方案。下面就來介紹實(shí)現(xiàn)方法
(1)創(chuàng)建一張新表,規(guī)定好自增規(guī)則(若該表已經(jīng)存在,則刪除掉再創(chuàng)建即可)
(2)在數(shù)據(jù)庫中對(duì)該表插入一條指定id為1的表數(shù)據(jù)
(3)再插入一條不指定id內(nèi)容的數(shù)據(jù)表,讓表的id自增
(4)使用mybatisPlus創(chuàng)建生成實(shí)體類時(shí),指定該實(shí)體類的id自增規(guī)則為數(shù)據(jù)庫只增規(guī)則
1.創(chuàng)建一張新用戶表,規(guī)定好自增規(guī)則(若該表已經(jīng)存在,則刪除掉再創(chuàng)建即可)
AUTO_INCREMENT=1,只增規(guī)則為下一條表記錄id只增1
create table if not exists `sys_user` ( `id` bigint(20) not null auto_increment PRIMARY KEY comment '主鍵' , `opend_id` varchar(256) DEFAULT null comment '微信用戶唯一id', `account_number` varchar(256) DEFAULT null comment'賬號(hào)', `username` varchar(256) not null DEFAULT '' comment '用戶名', `password` varchar(256) comment '密碼', `nick_name` varchar(256) DEFAULT null comment '昵稱', `gender` varchar(25) DEFAULT null comment '性別', `phone` varchar(256) DEFAULT null comment '手機(jī)號(hào)', `role` varchar(10) default '0' not null comment '角色,0為普通用戶,1為會(huì)員', `age` varchar(256) not null DEFAULT'110'comment '年齡', `user_status` varchar(25) default '0' not null comment '狀態(tài)', `update_time` datetime not NULL DEFAULT CURRENT_TIMESTAMP comment '更新時(shí)間', `create_time` datetime not NULL DEFAULT CURRENT_TIMESTAMP comment '創(chuàng)建時(shí)間', `is_deleted` tinyint default 0 not null comment '是否刪除(0-未刪, 1-已刪)', `email` varchar(256) DEFAULT null comment '郵箱', `avatar` varchar(256) not null DEFAULT 'https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh5mIHO4nibH0KlMECNjjGxQUq24ZEaG T4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132' comment '頭像圖片', `city` varchar(50) DEFAULT '北京' comment '城市', `province` varchar(50) DEFAULT null comment '省份', `country` varchar(50) comment '國家' ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 comment '用戶表信息';
2.在數(shù)據(jù)庫中對(duì)該表插入一條指定id為1的表數(shù)據(jù)
insert into sys_user values(1,'微信用戶唯一id','賬號(hào)','用戶名','mima', '昵稱','xb','sjh','js','nl','0',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP, 0,'郵箱','頭像圖片','城市','省份','國家')
3.再插入一條不指定id內(nèi)容的數(shù)據(jù)表,讓表的id自增
insert into sys_user(username,password,country) values('dscdc','8979777','中國');
經(jīng)過這三步操作后,我們打開navicat來查看數(shù)據(jù)庫中sys_user表里的記錄
可以看出,生成的表id已經(jīng)是按照只增1的規(guī)則只增了。
最后我們只需要在Java實(shí)體類的id字段上加上一個(gè)注解,規(guī)定mybatisplus在添加新表時(shí)按照數(shù)據(jù)庫表設(shè)計(jì)時(shí)id的只增規(guī)則只增即可,該注解為@TableId(value ="id",type = IdType.AUTO)
mybatis-plus的@TableId注解
@TableId(value=“xxx”,type = IdType.xxx):
“value”:設(shè)置數(shù)據(jù)庫字段值
“type”:設(shè)置主鍵類型、如果數(shù)據(jù)庫主鍵設(shè)置了自增建議使用“AUTO”
@TableId(value ="id",type = IdType.AUTO)
下面給出該實(shí)體類的完整Java代碼,到這里我們也就實(shí)現(xiàn)了建表id按照自增規(guī)則自增功能
@Data @AllArgsConstructor @NoArgsConstructor @TableName("sys_user") public class SysUser { // type = IdType.AUTO id按照數(shù)據(jù)庫里設(shè)置的只增規(guī)則自己增加 @TableId(value ="id",type = IdType.AUTO) private Long id; //用戶名 private String username; //賬號(hào) private String accountNumber; //密碼 private String password; //昵稱 private String nickName; //手機(jī)號(hào) private String phone; //角色 private String role; //年齡 private String age; //狀態(tài) private String userStatus; //更新時(shí)間 private Date updateTime; //創(chuàng)建時(shí)間 private Date createTime; //是否刪除(0-未刪, 1-已刪) private Integer isDeleted; //郵箱 private String email; //頭像圖片 private String avatar; private String gender; private String city; private String province; private String country; private String opendId; }
“mysql怎么創(chuàng)建表設(shè)置表主鍵id從1開始自增”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。