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
To get data types of all columns:
describe table_name
or just a single column:
describe table_name column_name