Home >Database >Mysql Tutorial >MySql中查询表中的列名_MySQL

MySql中查询表中的列名_MySQL

WBOY
WBOYOriginal
2016-05-30 17:11:131198browse

例如我的数据库名为“example”,使用

 

USE example;

MySql中查询表中的列名_MySQL

确定使用example数据库。使用

 

 

show tables;

MySql中查询表中的列名_MySQL

 

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

 

 

DESC persons;

MySql中查询表中的列名_MySQL

 

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

 

 

DESCRIBE persons;

MySql中查询表中的列名_MySQL

 

或者使用

 

 

SHOW columns FROM persons;

MySql中查询表中的列名_MySQL

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn