Home  >  Article  >  php教程  >  小技巧取得MYSQL中ENUM枚举列的全部可能值。

小技巧取得MYSQL中ENUM枚举列的全部可能值。

WBOY
WBOYOriginal
2016-06-13 10:29:01730browse

取得MYSQL中ENUM(枚举)列的全部可能值 这里其实并不需要其它的什么函数来支持,只需要使用MYSQL提供的一些SQL语句就可以了。 这里为了简单起见,以MYSQL的系统表USER为例,取出SELECT_PRIV这一列的所有可能值。 方法:SHOW COLUMNS FROM table_name LIKE enum_column_name   小写的部分需要根据你的情况改变。 程序: "; $enum_arr=explode("(",$enum); $enum=$enum_arr[1]; $enum_arr=explode(")",$enum); $enum=$enum_arr[0]; $enum_arr=explode(",",$enum); for($i=0;$i
"; } ?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn