首页 > 代码库 > 使用shell命令操作数据库
使用shell命令操作数据库
使用mysql的-e参数可以执行各种sql的(创建,删除,增,删,改、查)等各种操作
用法
mysql -uxxx –pxxx -e “mysql 命令”
当然还可以使用 如下写法
mysql -e -uxxx –pxxx “mysql 命令”
实践出真知
[root@iZwz99qnmldt4n744noo9gZ ~]# mysql -e "show databases;" -uroot -ppenghui110 >test.txt [root@iZwz99qnmldt4n744noo9gZ ~]# ls databases_backup_20170411172702 lnmp1.3-full lnmp-install.log test.txt [root@iZwz99qnmldt4n744noo9gZ ~]# cat test.txt Database information_schema blog mysql performance_schema question wordpress yii2 [root@iZwz99qnmldt4n744noo9gZ ~]# mysql -uroot -ppenghui110 -e "show databases;" >a.txt [root@iZwz99qnmldt4n744noo9gZ ~]# cat a.txt Database information_schema blog mysql performance_schema question wordpress yii2
参考文档:http://blog.csdn.net/feeltouch/article/details/46643065
使用shell命令操作数据库
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。