欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

查询一个表的所有字段

程序员文章站 2023-08-02 21:16:25
select COLUMN_NAME from information_schema.COLUMNS where table_name = '要查询表的名字'; ......

select column_name from information_schema.columns where table_name = '要查询表的名字';