I want to get the column data type of a mysql table.
Thought I could use MYSQLFIELD structure but it was enumerated field types.
MYSQLFIELD
Then I tried wi
Query to find out all the datatype of columns being used in any database
SELECT distinct DATA_TYPE FROM INFORMATION_SCHEMA.columns WHERE table_schema = '' AND column_name like '%';