我们可以在将数据从 Mysql 表导出到文件时使用 WHERE 子句中的条件。可以通过示例来理解 -示例假设我们从表“Student_info”中有以下数据 -mysql> Select * from Student
我们可以在将数据从 Mysql 表导出到文件时使用 WHERE 子句中的条件。可以通过示例来理解 -
假设我们从表“Student_info”中有以下数据 -
mysql> Select * from Student_info;
+------+---------+------------+------------+
| id | Name | Address | Subject |
+------+---------+------------+------------+
| 101 | YashPal | Amritsar | History |
| 105 | Gaurav | Chandigarh | Literature |
| 125 | Raman | Shimla | Computers |
| 130 | Ram | Jhansi | Computers |
| 132 | Shyam | Chandigarh | Economics |
| 133 | Mohan | Delhi | Computers |
+------+---------+------------+------------+
6 rows in set (0.07 sec)
假设我们要导出 id 值大于 120 的记录,那么以下查询会将此类记录从“Student_info”表导出到“Stuednt4.CSV”文件中 -
mysql> Select * from student_info WHERE id > 120 into outfile 'C:/mysql/bin/mysql-files/student4.csv' Fields terminated by ',';
Query OK, 4 rows affected (0.16 sec)
上面的查询会将以下值导出到 Student4.CSV 文件中 -
125 Raman Shimla Computers
130 Ram Jhansi Computers
132 Shyam Chandigarh Economics
133 Mohan Delhi Computers
--结束END--
本文标题: 如何将基于某些条件的值从 MySQL 表导出到文件中?
本文链接: https://lsjlt.com/news/438329.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0