สามารถทำได้โดยใช้คำสั่ง 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)
ขณะนี้ แบบสอบถามต่อไปนี้สามารถส่งออกข้อมูลทั้งหมดจากตาราง 'Student_info' ไปยังไฟล์ชื่อ 'student.txt':
mysql> Select * from student_info INTO OUTFILE 'C:/mysql/bin/mysql-files/student.txt'; Query OK, 6 rows affected (0.01 sec)
แบบสอบถามด้านบนจะสร้างไฟล์ชื่อ 'Student.txt' และส่งออกข้อมูลทั้งหมดจากตาราง 'Student_info' เข้าไป