mysql -uroot -p -s -N
mysql -uroot -p -s -N -t 会显示|
也可以直接把结果输出到文件
select now() from dual into outfile '1.txt'
默认文件放到data 数据文件目录
The MySQL server is running with the --secure-file-pri option so it cannot execute this.
报错原因:
mysql文件的导入和导出路径有默认的设置,即 secure-file-priv,当传入文件路径与默认的路径冲突时就会报错。
secure-file-priv的值有三种情况:
secure_file_prive=null ––限制mysqld 不允许导入导出
secure_file_priv=/path/ – --限制mysqld的导入导出只能发生在默认的/path/目录下
secure_file_priv=’’ – --不对mysqld 的导入 导出做限制
修改 my.cnf 修改secure_file_priv=’’
重启数据库
也可以使用 tee 指定 输出目录 notee 关闭