我正在使用 PHP 从查询中导出文本文件。评选结果如下
Account student_no
001 stu_001
stu_001
001 stu_002
stu_002
我选择的是 ( select * from payment group by account,student_no asc
,所以我的问题是我需要在每个组之间插入一个空行(即 001 stu_001、001 stu_002)用于导出文本文件。那么我该如何在 PHP 中做到这一点。