标签: php excel
是否可以将MySQL中的特定行导出为Excel? 我在互联网上发现的所有内容都是整个表格导出的。 每行怎么样?
答案 0 :(得分:0)
为此,您可以使用如下所示的mysqldump。
exec('mysqldump --user = ... --password = ... --host = ... DB_NAME --where => /path/to/output/file.sql');