MySql中查询表中的列名_MySQL
来源:动视网
责编:小采
时间:2020-11-09 20:07:17
MySql中查询表中的列名_MySQL
MySql中查询表中的列名_MySQL:例如我的数据库名为“example”,使用 USE example; 确定使用example数据库。使用 show tables; 显示数据库中的所有表。使用 DESC persons; 显示表persons中的列名。或者使用 DESCRIBE person
导读MySql中查询表中的列名_MySQL:例如我的数据库名为“example”,使用 USE example; 确定使用example数据库。使用 show tables; 显示数据库中的所有表。使用 DESC persons; 显示表persons中的列名。或者使用 DESCRIBE person
例如我的数据库名为“example”,使用
USE example;

确定使用example数据库。使用
show tables;

显示数据库中的所有表。使用
DESC persons;

显示表persons中的列名。或者使用
DESCRIBE persons;

或者使用
SHOW columns FROM persons;
MySql中查询表中的列名_MySQL
MySql中查询表中的列名_MySQL:例如我的数据库名为“example”,使用 USE example; 确定使用example数据库。使用 show tables; 显示数据库中的所有表。使用 DESC persons; 显示表persons中的列名。或者使用 DESCRIBE person