我想将数据库中的一些特定记录保存到文件中,因此:
"select, export etc" * from tbl1 where ClientName = 'DemoAccount';
应生成输出
insert into tbl1 ...
这可能不需要任何生成请求结果的脚本吗?
如果不知道,是否了解适当的php类?
:编辑:
像样的解决方案(尽管有sql预选):
backup:
select * from tbl1 where ClientName='DemoAccount' into outfile '/opt/demo.sql'
restore:
delete from tbl1 where ClientName='DemoAccount';
LOAD DATA INFILE '/opt/mysql.sql' into table tbl1;
当做,
//t型
最佳答案
您可以将mysqldump与--where
(或-w
)选项一起使用,该选项允许您指定WHERE子句。
mysqldump -w "ClientName = 'DemoAccount'" ...other options...
关于php - 导出部分mysql元数据,可能吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5238220/