怎么从mysql数据库导出数据成excel表格

2024-12-28 16:10:00
推荐回答(1个)
回答1:

方法一
用mysql的命令和shell
select
*
into
outfile
'./bestlovesky.xls'
from
bestlovesky
where
1
order
by
id
desc
limit
0,
50;
方法二
把bestlovesky.xls以文本方式打开,然后另存为,在编码选择ansi编码,保存
echo
"select
id,name
from
bestlovesky
where
1
order
by
id
desc
limit
0,
50;"|
/usr/local/mysql/bin/mysql
-h127.0.0.1-uroot
-p123456
>
/data/bestlovesky.xls
方法三
mysql
-uroot
-p
-e
"select
*
from
test.table2
"
>
d:a.xsl