在Mysql中建立自動增加的主鍵

2021-05-22 09:58:20 字數 374 閱讀 2318

1.建立資料庫

webases

2.使用資料庫

use webases;

3.定義表

create table usertable (

userid int(4) primary key auto_increment not null,

uname varchar(20) not null,

upassward varchar(20) not null

)4.插入資料

insert into usertable(uname,upassward) values("daniel","123");

5.檢索資料

select * from usertable;

在mysql的表中增加UUID

我們要向mysql的表中增加uuid的話分兩種情況 一 建表初期 在建表初期的話我們如果想要增加uuid的話其實很簡單,直接增加相應的字段然後在後台生成uuid,並且把uuid的值插入到表中,mysql的預設值不支援函式,所以我們不可以在預設值中設定uuid,只能在後台生成然後插入到表中。例子如下 ...

在docker中建立mysql

我的mysql映象版本是8.0 記錄一下出現的意外情況 我是以下面的命令來進行安裝 sudo docker run name mysql 2 d restart always p 5002 3306 e mysql root password yourpasswd v pwd db2 data va...

在MySQL的表中增加一列

如果想在乙個已經建好的表中新增一列,可以用 alter table table name add column new column name varchar 45 not null 這條語句向已有的表中加入新的一列,這一列在表的最後一列位置。如果希望新增在指定的一列,可以用 alter table...