shengshuai
mysql查看表结构命令,如下:

desc 表名;
show columns from 表名;
describe 表名;
show create table 表名;

use information_schema
select * from columns where table_name=\'表名\';

分类:

技术点:

相关文章:

  • 2021-11-22
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
  • 2021-12-13
  • 2021-11-17
猜你喜欢
  • 2022-02-09
  • 2022-02-11
相关资源
相似解决方案