查看mysql表结构的几种方法时间:2023-03-09 07:12:13 desc 表名; show columns from 表名; describe 表名; show create table 表名; use information_schemaselect * from columns where table_name='表名';