gpt4 book ai didi

mysql - 检索 SET 类型列的允许值

转载 作者:行者123 更新时间:2023-11-29 06:17:13 24 4
gpt4 key购买 nike

如何检索 SET 类型的表列的允许值列表?

最佳答案

根据manual :

To determine all possible values for a SET column, use SHOW COLUMNS FROM tbl_name LIKE set_col and parse the SET definition in the Type column of the output.

因此,对于由以下人员创建的表:

CREATE TABLE myset (col SET('a', 'b', 'c', 'd'));

声明:

SHOW COLUMNS FROM myset LIKE 'col'

返回:

Field, Type,                   Null,  Key, Default, Extra
-----------------------------------------------------------
'col', 'set('a','b','c','d')', 'YES', '', NULL, ''

您可以通过解析Type列来获取所需的信息。

关于mysql - 检索 SET 类型列的允许值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35163212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com