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

取得MYSQLENUM(枚舉)列的全部可能值

編輯:關於MYSQL數據庫
這裡其實並不需要其它的什麼函數來支持,只需要使用MySQL提供的一些SQL語句就可以了。
這裡為了簡單起見,以MySQL的系統表USER為例,取出SELECT_PRIV這一列的所有可能值。
方法:SHOW COLUMNS FROM table_name LIKE enum_column_name
   小寫的部分需要根據你的情況改變。

程序:
//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."
";
$enum_arr=explode("(",$enum);
$enum=$enum_arr;
$enum_arr=explode(")",$enum);
$enum=$enum_arr[0];
$enum_arr=explode(",",$enum);
for($i=0;$iecho $enum_arr[$i]."
";
}
?>

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