Skip to main content

Exporting MySQl result set to ...

CSV File :
sudo echo " select * from accountMaster" | mysql -u username -p database > accounts.txt;

TEXT FILE:
sudo echo " select * from accountMaster" | mysql -u username -p database > accounts.txt;

MAIL :
sudo echo "select * from campaignMaster" | mysql -u username -p database > "campaigns.txt" | mail xyz@pintoodomain.com

:-)

Comments

Popular posts from this blog

Backslash on mac

I had been struggling to type back slash ( \) character on mac japanese keyboard as they don't have it printed on the keyboard, and I was doing copy paste all the time from google when i needed to type it until recently a tip came to my rescue , shortcut to backslash on mac japanese keyboard. Alt + ¥  Hope it helps others.