mysql之set與enum的介紹

來源:互聯網
上載者:User

set,enum的資料類型都是字串類型的對象,其中set最多可以包含64個元素,並且可以任意取到集合中的元素。而enum則是只能取到集合中的木一個元素,最多包含65536個元素,也就是說set是多項選擇,enum是單項選擇了。
這裡我們來比較下他們之間相同點和不同點:
複製代碼 代碼如下:mysql> create table db_set(
-> set1 set('x','y','z') not null,
-> enum1 enum('one','two','three') not null);
Query OK, 0 rows affected (0.06 sec)
mysql> desc db_set;
+-------+---------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------------------------+------+-----+---------+-------+
| set1 | set('x','y','z') | NO | | NULL | |
| enum1 | enum('one','two','three') | NO | | NULL | |
+-------+---------------------------+------+-----+---------+-------+
mysql> insert into db_set values(1,3),(1,4),(4,1);
Query OK, 3 rows affected, 1 warning (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 1
mysql> select * from db_set ;
+------+-------+
| set1 | enum1 |
+------+-------+
| x | three |
| x | |
| z | one |
+------+-------+
3 rows in set (0.01 sec)

這裡我們看到了它們的輸出結果,我當時也是很不解後來才知道:
set類型中對於超出它能表示的範圍的,就用二進位來加去:
Set元素
十進位
二進位

‘x'
1
0001

‘y'
2
0010

‘z'
4
0100

enum類型超出自己能表示的範圍,就附空值了:
enum元素
索引

null
null

‘'
0

‘one'
1

‘two'
2

‘three'
3

現在大家明白了吧。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.