mysql序列幹什麼的 mysql序列有什麼用

2021-10-18 22:21:35 字數 1492 閱讀 4434

mysql序列是一組整數:1,2,3等,由於一張資料表只能有乙個欄位自增主鍵,如果你想實現其他欄位也實現自動增加,就可以使用mysql序列來實現。

mysql中最簡單使用序列的方法就是使用mysql auto_increment來定義列。

以下例項中建立了資料表昆蟲,昆蟲表中id無需指定值可實現自動增長。mysql> create table昆蟲》 create table昆蟲

- > id int unsigned not null auto_increment,- > id int unsigned not null auto_increment ,

- > primary key(id),- > primary key (id ),

- > name varchar(30)not null,#type of insect- > name varchar (30 )not null ,#type of insect

- > date date not null,#date收集- > date date not null ,#date收集

- > origin varchar(30)not null#在**收集- > origin varchar (30 )not null #在**收集

查詢ok,0行受影響(0.02秒)查詢ok ,0 行受影響(0.02 秒)

mysql> insert into昆蟲(id,name,date,origin)values> insert into昆蟲(id ,名稱,日期,**)價值觀

- >(null,'家蠅','2001-09-10','廚房'),- > (null ,'家蠅' ,'2001-09-10' ,'廚房' ),

- >(null,'millipede','2001-09-10','車道'),- > (null ,'millipede' ,'2001-09-10' ,'車道' ),

- >(null,'蚱蜢','2001-09-10','前院');- > (null ,'蚱蜢' ,'2001-09-10' ,'前院' );

查詢ok,3行受影響(0.02秒)查詢ok ,3 行受影響(0.02 秒)

記錄:3個重複:0個警告:0記錄:3個重複:0個警告:0

mysql> select * from昆蟲order by id;> select * from昆蟲order by id ;

| id | 名字| 日期| **|| id | 名字 | 日期 | ** |

| 1 | 家蠅| 2001-09-10 | 廚房|| 1 | 家蠅 | 2001 - 09 - 10 | 廚房 |

| 2 | 千足蟲| 2001-09-10 | 車道|| 2 | 千足蟲 | 2001 - 09 - 10 | 車道 |

| 3 | 蚱蜢| 2001-09-10 | 前院|| 3 | 蚱蜢| 2001 - 09 - 10 | 前院|

3組(0.00秒)3 排在組(0.00 秒)

FFT是幹什麼的

fft在演算法競賽中就有乙個用途 加速多項式乘法 暴言 簡單來說,形如 a0x0 a1x1 a2x2 anxna0x0 a1x1 a2x2 anxn 的代數表示式叫做多項式,可以記作f x a0x0 a1x1 a2x2 anxnf x a0x0 a1x1 a2x2 anxn,其中a0,a1,ana0...

npm是幹什麼的

網上的 npm 教程主要都在講怎麼安裝 配置和使用 npm 卻很少告訴新人 npm 是幹什麼的?為什麼要使用 npm?今天我就來講講這個話題。本文目標讀者是 不太了解 npm 的新人 老司機請繞道。社群共享 麻煩npm的思路大概是這樣的 這些可以被使用的 被叫做 包 package 這就是 npm名...

HttpContext是幹什麼的

httpcontext 類.包括說明和如何使用.於是,上網狂搜 有網路就是好啊.這是我補充的httpcontext 類 1.生存週期 從客戶端使用者點選並產生了乙個向伺服器傳送請求開始 伺服器處理完請求並生成返回到客戶端為止.注 針對每個不同使用者的請求,伺服器都會建立乙個新的httpcontext...