可以透過在將資料從 MySQL 資料表匯出到檔案時在 SELECT … INTO OUTFILE 語句中提供列名稱來完成。我們藉助以下範例進行說明-
假設我們從表格「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 」和「Name」兩列匯出到檔案中,那麼以下查詢可以將「Student_info」表中僅「id」和「name」的值匯出到一個檔案中名為「student1.txt」的檔案-
mysql> Select id, Name from Student_info INTO OUTFILE 'C:/mysql/bin/mysql-files/student1.txt'; Query OK, 6 rows affected (0.07 sec)
上述查詢將建立一個名為「Student.txt」的文件,並將「Student_info」表中「id」和「name」列的值匯出到該文件中。
以上是我們如何將 MySQL 表中的某些欄位匯出到文字檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!