How to get all the possible values for the enum column in MySQL

Source: Internet
Author: User
Tags explode

In fact, there is no other function to support it, just use some of the SQL statements provided by MySQL can be.

For simplicity's sake, take the MySQL system table user as an example to remove all the possible values for the Select_priv column.

Method: Show COLUMNS-table_name like Enum_column_name

The lowercase part needs to change according to your situation.

Program:

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 the user like ' Select_priv '";

$result =mysql_db_query ($dbname, $query);

$enum =mysql_result ($result, 0, "type");

Network Management net Bitscn_com

echo $enum. "

";

$enum _arr=explode ("(", $enum);

$enum = $enum _arr[1];

$enum _arr=explode (")", $enum);

$enum = $enum _arr[0];

$enum _arr=explode (",", $enum);

for ($i =0; $i

echo $enum _arr[$i]. "

";

}

?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.