Home > Database > navicat > body text

How to export data dictionary using navicat

爱喝马黛茶的安东尼
Release: 2019-08-05 13:44:05
Original
6151 people have browsed it

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'
Copy after login

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!

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!