> Hy there,
> I would like to know if there is a possibility to get all allowed values
> of an enum field out of the database.
> 
> I know there are methods to get the field type and those give me back
> something like "enum('value1', 'value2', 'value3')", and I can parse my
> possible values out of this with regexp's in the Programming language of
> my Choice, but I am interested to know if there isn't a more "beautiful"
> possibility where Mysql gives me back the result direct.

SELECT DISTINCT enum_col FROM tablename WHERE enum_col<256;

/ Carsten
--
Carsten H. Pedersen
keeper and maintainer of the bitbybit.dk MySQL FAQ
http://www.bitbybit.dk/mysqlfaq



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to