This is a discussion on How to programmatically get all MySQL data types? within the MySQL Database forums, part of the Database Forums category; I want to have a list of MySQL data types to use in my application. Is there a query to ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
If you are using MySQL 5 -
select distinct data_type from information_schema.columns order by 1 -- Jack Vamvas ___________________________________ The latest IT jobs - www.ITjobfeed.com <a href="http://www.itjobfeed.com">UK IT Jobs</a> <thegoosmans@gmail.com> wrote in message news:1173142255.386497.89490@n33g2000cwc.googlegro ups.com... >I want to have a list of MySQL data types to use in my application. > Is there a query to do this (or any other way)? > > Thanks in advance. > |