如何查看一个表的字段及其字段描述等信息并导出为一个table, 不使用show语句

直接看information_schema下的COLUMNS表就行吧
select * from information_schema.COLUMNS where table_name='xxx';