Home > Database > Mysql Tutorial > body text

Mysql 查询列注释及列名称_MySQL

WBOY
Release: 2016-06-01 13:51:56
Original
928 people have browsed it

//查询列注释及列名称
Mysql 查询列注释及列名称_MySQLselect  column_name, column_comment from information_schema.columns where table_schema ='databaseName'  and table_name = 'tableName';//查询表注释及表名称
Mysql 查询列注释及列名称_MySQLselect table_name,table_comment from information_schema.tables  where table_schema = 'image' and table_name ='tableName';

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!