標籤:
引言
這幾天做一個任務,比對兩個資料表中的資料,昨天用PHP寫了一個版本,但考慮到有的機器沒有php或者php沒有編譯mysql擴充,就無法使用mysql系列的函數,指令碼就無效了,今天寫個shell版本的,這樣,在所有linux系列機器上就都可以運行了。
shell是如何操作mysql的?
shell操作mysql其實就是通過mysql命令通過參數去執行語句,跟其他程式裡面是一樣的,看看下面這個參數:
-e, --execute=name Execute command and quit. (Disables --force and history file.)
因此我們可以通過mysql -e來執行語句,就像下面這樣:
mysql -hlocalhost -P3306 -uroot -p123456 $test --default-character-set=utf8 -e "select * from users"
執行之後返回下面結果:
在shell指令碼中操作mysql匯出資料
MYSQL="mysql -h192.168.1.102 -uroot -p123456 --default-character-set=utf8 -A -N"#這裡面有兩個參數,-A、-N,-A的含義是不去預讀全部資料表資訊,這樣可以解決在資料表很多的時候卡死的問題#-N,很簡單,Don‘t write column names in results,擷取的資料資訊省去列名稱sql="select * from test.user"result="$($MYSQL -e "$sql")"dump_data=./data.user.txt>$dump_dataecho -e "$result" > $dump_data#這裡要額外注意,echo -e "$result" > $dump_data的時候一定要加上雙引號,不讓匯出的資料會擠在一行#下面是返回的測試資料3 吳彥祖 325 王力宏 326 ab 327 黃曉明 338 anonymous 32
插入資料
#先看看要匯入的資料格式,三列,分別是id,名字,年齡(資料是隨便捏造的),放入data.user.txt12 tf 2313 米勒 2414 西安電子科技大學 9015 西安交大 9016 北京大學 90#OLF_IFS=$IFS#IFS=","#臨時設定預設分隔符號為逗號cat data.user.txt | while read id name agedosql="insert into test.user(id, name, age) values(${id}, ‘${name}‘, ${age});"$MYSQL -e "$sql"done
輸出結果
+----+--------------------------+-----+| id | name | age |+----+--------------------------+-----+| 12 | tf | 23 || 13 | 米勒 | 24 || 14 | 西安電子科技大學 | 90 || 15 | 西安交大 | 90 || 16 | 北京大學 | 90 |+----+--------------------------+-----+
更新資料
#先看看更新資料的格式,將左邊一列替換為右邊一列,只有左邊一列的刪除,下面資料放入update.user.txttf twoFile西安電子科技大學 西軍電西安交大 西安交通大學北京大學cat update.user.txt | while read src dstdoif [ ! -z "${src}" -a ! -z "${dst}" ]thensql="update test.user set name=‘${dst}‘ where name=‘${src}‘"fiif [ ! -z "${src}" -a -z "${dst}" ]thensql="delete from test.user where name=‘${src}‘"fi$MYSQL -e "$sql"done
輸出結果:
+----+--------------------------+-----+| id | name | age |+----+--------------------------+-----+| 12 | twoFile | 23 || 13 | 米勒 | 24 || 14 | 西軍電 | 90 || 15 | 西安交通大學 | 90 |+----+--------------------------+-----+
本文著作權歸作者iforever[]所有,未經作者本人同意禁止任何形式的轉載,轉載文章之後必須在文章頁面明顯位置給出作者和原文串連。
本文轉自:http://www.cnblogs.com/iforever/p/4459857.html
shell處理mysql增、刪、改、查