返回表的字段名称的SQL命令是什么?

要返回表的字段名称,可以使用desc命令。语法如下-

desc yourTableName;

或者,您可以使用information_schema.columns表中的column_name字段。语法如下-

select column_name from information_schema.columns where table_name = ’yourTableName’;

为了理解这两种语法,假设我们有一个表“ ExtractCommentDemo1”。

使用第一种语法-

mysql> desc ExtractCommentDemo1;

以下是显示字段的输出-

+----------+--------------+------+-----+---------+-------+
| Field    | Type         | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| UserId   | int(11)      | YES  |     | NULL    |       |
| UserName | varchar(200) | YES  |     | NULL    |       |
+----------+--------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

使用第二种语法:

mysql> select column_name from INFORMATION_SCHEMA.COLUMNS
   −> where table_name = 'ExtractCommentDemo1';

以下是显示字段名称的输出-

+-------------+
| COLUMN_NAME |
+-------------+
| UserId      |
| UserName    |
+-------------+
2 rows in set (0.00 sec)