目标 MYSQL 中的单个记录在 php 用户界面中导出为 CSV
最好的方法是什么?
记录通过 GUI 和标识记录 ID 的变量 $s 进行标识。
您能否发布您使用过的帮助您做到这一点的资源(即教程)。
非常感谢任何帮助!!!
What would be the best method to do this?
the Record is identified via a GUI and a variable $s which identifies the record ID.
could you please post resources that you have used (i.e. tutorials) that have helped you do this.
Any Help is greatly appreciated !!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先
使用 MySQL select like
ifnull 非常重要,因为否则 CONCAT 中的 null 字段将使整个 CONCAT 为 null,假设 middlename 为 null,此代码将输出类似以下内容:
“约翰”、“”、“史密斯”
如果没有 ifnull,它将不会输出任何内容,因为 null-middlename 将使整个 concat 表达式为 null。
仅当 id 不唯一时才需要
Order by
和limit
,因为您说过只需要一行。接下来放入 CSV 标头并输出您之前在 $result 中保存的行。
First
use MySQL select like
The ifnull's are very important because otherwise null fields in a CONCAT will make the whole CONCAT to be null, suppose middlename is null, this code will output something like:
"Johan","","Smith"
Without the ifnull's it will just output nothing, because the null-middlename will make the whole concat expression null.
The
Order by
andlimit
are only needed if the id is not unique, because you said you only want one line.Next put a CSV header in and output the line you saved in $result earlier.