The trick is to get all possible values for the enum enum column in MySQL. _php Tutorials

Source: Internet
Author: User
Get all possible values for enum (enum) columns in MySQL there is really no need for any other functions to support it, just use some of the SQL statements provided by MySQL. For the sake of simplicity, take the MySQL system table user as an example to remove all possible values for the Select_priv column. Method: SHOW COLUMNS from table_name like enum_column_name lowercase parts need to change depending on your situation. Program: "; $enum _arr=explode ("(", $enum); $enum = $enum _arr[1]; $enum _arr=explode (")", $enum); $enum = $enum _arr[0]; $enum _arr=explode (",", $enum); for ($i =0; $i
";}? >

http://www.bkjia.com/phpjc/531700.html www.bkjia.com true http://www.bkjia.com/phpjc/531700.html techarticle get all possible values for enum (enum) columns in MySQL there is actually no need for any other function to support this. You just need to use some SQL statements provided by MySQL. Here for Jane ...

  • 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.