gpt4 book ai didi

php - 从sql语句创建多个CSV文件

转载 作者:行者123 更新时间:2023-11-29 07:49:22 27 4
gpt4 key购买 nike

我正在运行如下所示的 SQL,以选择数据库中具有定义的兴趣代码的所有行。现在我想将所有选定的结果导出到 CSV 中,但这会发生大约 30 次,因为有大约 30 个兴趣代码。有没有办法让我依次循环执行 1 个 SQL,每次使用新 SQL 查询的结果创建一个新的 CSV?

两个 SQL 查询的示例。

select * from subscribers where list=27 and custom_fields LIKE '%\%CV\%%';
select * from subscribers where list=27 and custom_fields LIKE '%\%JJC\%%';

等等...每次创建一个全新的 CSV 文件。 30 个文件。

我发现了以下内容(尚未测试),但我想这将是 php,但需要它不断执行 1 个 sql。

$select = "select * from subscribers where list=27 and custom_fields LIKE '%\%CV\%%';";

$export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );

$fields = mysql_num_fields ( $export );

for ( $i = 0; $i < $fields; $i++ )
{
$header .= mysql_field_name( $export , $i ) . "\t";
}

while( $row = mysql_fetch_row( $export ) )
{
$line = '';
foreach( $row as $value )
{
if ( ( !isset( $value ) ) || ( $value == "" ) )
{
$value = "\t";
}
else
{
$value = str_replace( '"' , '""' , $value );
$value = '"' . $value . '"' . "\t";
}
$line .= $value;
}
$data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );

if ( $data == "" )
{
$data = "\n(0) Records Found!\n";
}

header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=your_desired_name.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";

最佳答案

我会编写一个函数来创建单个导出,然后在不同代码的循环中调用它。像这样的事情:

function export($code)
{
$query = "select * from subscribers where list=27 and custom_fields LIKE '%\%" . $code . "\%%'";
// put the results for this query in $data as in your example
file_put_contents('/path/to/file/for/code_' . $code, $data);
}

$codes = array('CV', 'JCC', '...');
foreach ($codes as $code) {
export($code);
}

关于php - 从sql语句创建多个CSV文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26866545/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com