首頁 >資料庫 >mysql教程 >MySQL的BOOL和BOOLEAN列資料型別有什麼差別?

MySQL的BOOL和BOOLEAN列資料型別有什麼差別?

WBOY
WBOY轉載
2023-08-22 10:29:021719瀏覽

MySQL的BOOL和BOOLEAN列資料型別有什麼差別?

BOOL和BOOLEAN都像TINYINT(1)一樣運作。你可以說它們都是TINYINT(1)的同義字。

BOOLEAN

這是BOOLEAN的一個例子。建立一個具有boolean類型列的表的查詢。

mysql> create table Demo
   -> (
   -> isVaidUser boolean
   -> );
Query OK, 0 rows affected (1.08 sec)

使用插入指令將記錄插入表中的查詢如下 −

mysql> insert into Demo values(true);
Query OK, 1 row affected (0.19 sec)

mysql> insert into Demo values(0);
Query OK, 1 row affected (0.17 sec)

使用select指令顯示表中的所有值。查詢如下 −

mysql> select *from Demo;

輸出

+------------+
| isVaidUser |
+------------+
|          1 |
|          0 |
+------------+
2 rows in set (0.00 sec)

BOOL

#這是BOOL的一個例子。以下是建立表格的查詢−

mysql> create table Demo1
   -> (
   -> isVaidUser bool
   -> );
Query OK, 0 rows affected (0.54 sec)

使用插入指令在表格中插入記錄。查詢如下 −

mysql> insert into Demo1 values(1);
Query OK, 1 row affected (0.14 sec)

mysql> insert into Demo1 values(false);
Query OK, 1 row affected (0.16 sec)

使用select指令顯示表中的所有值。查詢如下 −

mysql> select *from Demo1;

輸出

+------------+
| isVaidUser |
+------------+
|          1 |
|          0 |
+------------+
2 rows in set (0.00 sec)

Look at the sample output, false is converted to 0. That means BOOL and BOOLEAN implicitly convert into tinyint(1).

以上是MySQL的BOOL和BOOLEAN列資料型別有什麼差別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除