mysql如何将数据库导出到excel表格_mysql数据库表结构导出到Excel中

数据库导出表结构sql语句:

select column_name as字段类型,

column_typeas数据类型,

data_typeas字段类型,

character_maximum_lengthas长度,

is_nullableas是否为空,

column_defaultas默认值,

column_commentas备注frominformation_schema.columnswheretable_schema= '数据库名称' and table_name = '表名称'

查询出表结构,可以点击导出结果将查询的结果导出

也可以:

select column_name as字段类型,

column_typeas数据类型,

data_typeas字段类型,

character_maximum_lengthas长度,

is_nullableas是否为空,

column_defaultas默认值,

column_commentas备注frominformation_schema.columnswheretable_schema= '数据库名称' and table_name = '表名称'

into outfile 'C:/Users/Admintor/Desktop/abc.xls' --导出到桌面的Excel表格

执行sql语句

如果执行这个sql语句报错时:--secure-file-priv

mysql限制了导入与导出的目录权限 需要修改mysql.ini配置文件

进入mysql执行show variables like '%secure%'; 发现secure_file_priv路径为NULL

修改mysql.ini中,添加一句

secure-file-priv = C:/Users/权焕旭/Desktop/

重启MySQL,然后再次查看当前的secure-file-priv

show variables like '%secure%';

然后执行sql语句 可以正常导出

还可以:

新建一个excel表格,将查询的数据全选后右击选择复制为-制表符分隔值(栏位名和数据),复制到Excel表格中

ce9266f80f044736620e0876dac3378d.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值