首頁 >資料庫 >mysql教程 >我們如何取得 MySQL SET 列作為整數偏移量清單?

我們如何取得 MySQL SET 列作為整數偏移量清單?

王林
王林轉載
2023-08-25 19:21:031425瀏覽

我们如何获取 MySQL SET 列作为整数偏移量列表?

借助 MAKE_SET() 函數,我們可以以整數偏移清單的形式取得 MySQL SET 列值。為了方便理解,我們建立一個名為「set_testing」的表,如下所示 -

mysql> Create table set_testing( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, table SET('ABC','ABD','GHF') NOT NULL);
Query OK, 0 rows affected (0.08 sec)

mysql> Insert into set_testing (table) values('1');
Query OK, 1 row affected (0.06 sec)

mysql> Insert into set_testing (table) values('2');
Query OK, 1 row affected (0.06 sec)

mysql> Insert into set_testing (table) values('3');
Query OK, 1 row affected (0.02 sec)

mysql> Insert into set_testing (table) values('4');
Query OK, 1 row affected (0.02 sec)

mysql> Select * from set_testing;
+----+---------+
| id | table   |
+----+---------+
| 1  | ABC     |
| 2  | ABD     |
| 3  | ABC,ABD |
| 4  | GHF     |
+----+---------+
4 rows in set (0.00 sec)

現在,以下查詢將取得 MySQL SET 列作為整數偏移量清單 -

mysql> Select MAKE_SET(types+0,'1','2','3') as output from doctypes1;
+--------+
| output |
+--------+
| 1      |
| 2      |
| 1,2    |
| 3      |
+--------+
4 rows in set (0.00 sec)

以上是我們如何取得 MySQL SET 列作為整數偏移量清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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