shell脚本操作mysql数据库,使用mysql的-e参数可以执行各种sql的(创建,删除,增,删,改、查)等各种操作。
mysql -hhostname -Pport -uusername -ppassword -e 相关mysql的sql语句,不用在mysql的提示符下运行mysql,即可以在shell中操作mysql的方法
例子:
mysql -h 117.121.54.220 -P 3308 -u tuijian_read -p”f6w6T” -e “use mms;select vid_field_list_str from con_video_info where cid_str and deleted=0 order by create_time desc;” | sed ‘1d’ > $vid_info_file_name
使用shell脚本操作mysql数据库
最新推荐文章于 2022-10-11 16:50:04 发布