sql out file formate

Solutions on MaxInterview for sql out file formate by the best coders in the world

showing results for - "sql out file formate"
Derrick
05 Jan 2020
1SELECT customer_id, firstname, surname INTO OUTFILE 'E:/exportdata/customers.txt'
2  FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
3  LINES TERMINATED BY '\n'
4  FROM customers;
5
similar questions
queries leading to this page
sql out file formate