可以使用以下两种方法查询MySQL表的字段名称:
DESC 表名;
例如:
DESC employees;
这将返回employees表的字段信息。
SELECT column_name
FROM information_schema.columns
WHERE table_schema = '数据库名'
AND table_name = '表名';
将"数据库名"替换为实际的数据库名称,"表名"替换为实际的表名称。例如:
SELECT column_name
FROM information_schema.columns
WHERE table_schema = 'mydatabase'
AND table_name = 'employees';
这将返回employees表的字段名称。
无论使用哪种方法,都可以获得MySQL表的字段名称。