实际应用中,不仅可以先登陆mysql再使用,还可以在链接的时候进行sql操作,此时需要加参数-e
例:
>mysql -hlocalhost -P8080 -uroot -p123456 -e‘set names utf8;use report;select * from table;‘;
就是这样,-e中的语句需要用封号来分割。
mysql中-e用法
原文:http://www.cnblogs.com/nerrissa/p/4227513.html