Tagged Questions
2
votes
0answers
25 views
Difference of write authorization on file system with mySQL
On my local mySQL (on CentOS 6 VM) database I wanted to export some data from the DB to a file like this:
SELECT html
FROM mytable
WHERE lang = 'en' and id='KEY01'
INTO OUTFILE 'key01_en.html'
By ...