程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 小技巧:取得MYSQL中ENUM(枚舉)列的全部可能值

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

編輯:關於PHP編程

這裡其實並不需要其它的什麼函數來支持,只需要使用MYSQL提供的一些SQL語句就可以了。
這裡為了簡單起見,以MYSQL的系統表USER為例,取出SELECT_PRIV這一列的所有可能值。
方法:SHOW COLUMNS FROM table_name LIKE enum_column_name
  小寫的部分需要根據你的情況改變。
程序:
<?php
//By SonyMusic([email protected])
//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>";
    }
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved