mac 安装mysql_工具-MySQL数据库表结构快速导出成MarkDown文档

1.前言

作为一名技术人员,少不了接触数据库,那么当遇到一个旧项目数据库表比较多,怎么快速的导出表结构,形成文档方便后续跟进呢?今天我给大家安利一个好用的工具mysql_markdown。

eaeb7029aa1a87a1e399f0e1f8da9060.png

2.工具官网代码地址

https://github.com/alicfeng/mysql_markdown

它是一款基于 go 语言编写的一个命令行工具,适用于 Linux、Mac、Windows等平台。

3.直接部署(小白推荐方式)

发布包从官网代码直接下载安装

https://github.com/alicfeng/mysql_markdown/releases
9e20941d1bc926a4ac9d1e246d94fd2e.png

下载稳定版本

4.编译部署

有时候我们需要使用工具新特性,可以自行编译此工具,这里也介绍下如何编译最新代码。

4.1部署Go环境

  • 官网下载Go安装包

官网https://golang.google.cn/dl/下载go安装包,选择合适的平台下载安装即可。

30430c50023a325447df8d4333c3677d.png

Go官网

  • 这里我是macos平台,下载后默认安装在/usr/local/go/目录下。
  • 配置环境变量,追加环境变量。
$ vim ~/.bash_profileexport GOROOT=/usr/local/go/export GOBIN=$GOROOT/binexport PATH=$GOBIN:$PATH
  • 生效环境变量
$ source  ~/.bash_profile
  • 验证是否生效
$ which go/usr/local/go/bin/go

4.2编译工具

编译安装(有编译知识的童鞋可以自行编译)

$ git clone https://github.com/alicfeng/mysql_markdown.git$ cd mysql_markdown$ go get "github.com/go-sql-driver/mysql"$ go build -o /usr/local/bin/mysql_markdown mysql_markdown.go$ chmod +x /usr/local/bin/mysql_markdown

5.工具语法

$ ./mysql_markdown_mac --helpUsage: mysql_markdown [options...]--help  This help text-h      host.     default 127.0.0.1-u      username. default root-p      password. default root-d      database. default mysql-P      port.     default 3306-c      charset.  default utf8-o      output.   default current location-t      tables.   default all table and support ',' separator for filter

是不是和mysql的语法一样,容易上手。

6.工具实战

下面我以导出mysql表为例,这里注意参数选项和参数值要空一格,切记切记!

$ ./mysql_markdown_mac -h 10.10.10.10 -P 33706 -u root -p kkdd123 -d mysql1/31 the columns_priv table is making ...2/31 the db table is making ...3/31 the engine_cost table is making ...4/31 the event table is making ...5/31 the func table is making ...6/31 the general_log table is making ...7/31 the gtid_executed table is making ...8/31 the help_category table is making ...9/31 the help_keyword table is making ...10/31 the help_relation table is making ...11/31 the help_topic table is making ...12/31 the innodb_index_stats table is making ...13/31 the innodb_table_stats table is making ...14/31 the ndb_binlog_index table is making ...15/31 the plugin table is making ...16/31 the proc table is making ...17/31 the procs_priv table is making ...18/31 the proxies_priv table is making ...19/31 the server_cost table is making ...20/31 the servers table is making ...21/31 the slave_master_info table is making ...22/31 the slave_relay_log_info table is making ...23/31 the slave_worker_info table is making ...24/31 the slow_log table is making ...25/31 the tables_priv table is making ...26/31 the time_zone table is making ...27/31 the time_zone_leap_second table is making ...28/31 the time_zone_name table is making ...29/31 the time_zone_transition table is making ...30/31 the time_zone_transition_type table is making ...31/31 the user table is making ...mysql_markdown finished ...

然后你会看到当前目录下会生成一个mysql_20200610_103451.md文件。

15b16952c226a6c0efd3dab208fd8726.png

Typora打开md文档

7.结束

是不是很简单,生成表结构文档,so easy。你学会了吗?


喜欢本文的童鞋,可以关注+收藏,不明白的地方也可以评论留言。

119905b0607e865c300cc36a06f186e8.png
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值