当前位置:编程学习 > php >>

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

答案:

取得MYSQL中ENUM(枚举)列的全部可能值




这里其实并不需要其它的什么函数来支持,只需要使用MYSQL提供的一些SQL语句就可以了。
这里为了简单起见,以MYSQL的系统表USER为例,取出SELECT_PRIV这一列的所有可能值。
方法:SHOW COLUMNS FROM table_name LIKE enum_column_name
  小写的部分需要根据你的情况改变。

程序:
<?php
//By SonyMusic(sonymusic@163.com)
//HomePage(phpcode.yeah.net)

    $connect_hostname="localhost";
    $dbname="mysql";
    $connect_username = "root";
    $connect_pass ="";
    $connect_id = mysql_connect($connect_hostname, $connect_username, $connect_pass);
    mysql_select_db($dbname);
    
    $query="show columns from user like 'select_priv'";
    $result=mysql_db_query($dbname,$query);
    $enum=mysql_result($result,0,"type");
    echo $enum."<br>";
    $enum_arr=explode("(",$enum);
    $enum=$enum_arr[1];
    $enum_arr=explode(")",$enum);
    $enum=$enum_arr[0];
    $enum_arr=explode(",",$enum);
    for($i=0;$i<count($enum_arr);$i++){
        echo $enum_arr[$i]."<br>";
    }

?>

上一个:关于在FreeBSD上安装GD库的问题解决。(兼回西狂兄)
下一个:支持PHP+MySQL的免费空间(吐血推荐)

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,