Simple question: How can I return the field type of a MySQL table. I know about describe or show column but I just want to return that single param
describe
show column
The following syntax also works, using describe, enter the columnName after the tableName:
describe tbleName columnName;