shell處理mysql增 刪 改 查

2021-09-21 03:28:59 字數 1975 閱讀 9101

#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

1、匯出資料

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_data

echo -e "$result" > $dump_data

#這裡要額外注意,echo -e "$result" > $dump_data的時候一定要加上雙引號,不讓匯出的資料會擠在一行

2、插入資料

#先看看要匯入的資料格式,三列,分別是id,名字,年齡(資料是隨便捏造的),放入data.user.txt

#olf_ifs=$ifs

#ifs=","

#臨時設定預設分隔符為逗號

cat data.user.txt | while read id name age

dosql="insert into test.user(id, name, age) values($, '$', $);"

$mysql -e "$sql"

done

3、更新資料

#先看看更新資料的格式,將左邊一列替換為右邊一列,只有左邊一列的刪除,下面資料放入update.user.txt

tf twofile

西安電子科技大學 西軍電

西安交大 西安交通大學

北京大學

cat update.user.txt | while read src dst

doif [ ! -z "$" -a ! -z "$" ]

then

sql="update test.user set name='$' where name='$'"

fiif [ ! -z "$" -a -z "$" ]

then

sql="delete from test.user where name='$'"

fi$mysql -e "$sql"

done

4、dump資料到sql檔案

#利用mysqldump這個命令可以很輕鬆的匯出所有資料的sql語句到指定檔案

#匯出root@localhost下面的exp.opes中的所有資料到tt.sql

mysqldump -h localhost -u root -p exp opes > ./tt.sql

#回車之後輸入密碼就可以將所有sql語句輸出到tt.sql

匯入資料到mysql資料庫

#設定編碼,不然可能出現亂碼

mysql -hlocalhost -uroot --default-character-set=gbk -p exp< ./tt.sql

#回車之後輸入密碼,匯入tt.sql中的所有資料到exp資料庫中

參考博文:

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...

批量處理(增刪改)

首先在你的dao中需要繼承org.springframework.orm.ibatis.support.sqlmapclientdaosupport 然後在 中呼叫getsqlmapclienttemplate方法,覆寫sqlmapclientcallback類中的doinsqlmapclient的...