Home >Database >navicat >How to export data dictionary using navicat

How to export data dictionary using navicat

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-05 13:44:056270browse

How to export data dictionary using navicat

The method is as follows:
Use the COLUMNS table information in the information_schema library of mysql to achieve this.
For example, you need to export the data dictionary information of the ixinnuo_zxpt library:
Open Navicat, select query-->New query:

select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,COLUMN_TYPE,COLUMN_COMMENT from information_schema.columns where 
TABLE_SCHEMA='ixinnuo_zxpt'

In the upper right corner of the query result page, you can see An export function button, click to select multiple export formats, such as exporting to Excel, then you can select the Excel file (2007 or above), and then follow the prompts to export step by step, as shown in the following figure:
How to export data dictionary using navicat

Related recommendations: "Navicat for mysql graphic tutorial"

How to export data dictionary using navicat

How to export data dictionary using navicat

How to export data dictionary using navicat

How to export data dictionary using navicat

How to export data dictionary using navicat

##The final generated Excel content is as follows:


How to export data dictionary using navicat

The above is the detailed content of How to export data dictionary using navicat. For more information, please follow other related articles on the PHP Chinese website!

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
Previous article:What is navicat used for?Next article:What is navicat used for?