## Example execute SQL: ```sql SELECT * FROM t_table LIMIT 3; ``` It will show: |id|name| |:---:|:---:| |1|a| |2|b| |3|c| Now, I want to export these columns into `~/Downloads/export.csv`. ## How can I do it? `INTO OUTFILE` is not working, because it just work in mysql-server.
Example
execute SQL:
It will show:
Now, I want to export these columns into
~/Downloads/export.csv.How can I do it?
INTO OUTFILEis not working, because it just work in mysql-server.