千家信息网

MySQL的sql语句取shell程序中的for in多变量一例

发表于:2025-01-25 作者:千家信息网编辑
千家信息网最后更新 2025年01月25日,#!/bin/basha=(`cat time.txt`)b=(`cat sum.txt`)for (( i = 0; i < 38; i++))do/bin/mysql -u test -p'tes
千家信息网最后更新 2025年01月25日MySQL的sql语句取shell程序中的for in多变量一例#!/bin/bash
a=(`cat time.txt`)
b=(`cat sum.txt`)
for (( i = 0; i < 38; i++))
do
/bin/mysql -u test -p'test' -h localhost -P 3306 <update billing.test set scan_first_sum='${b[$i]}' where project='zjpj' and date='${a[$i]}';
select * from chenfeng.test where project='zjpj' and date='${a[$i]}' and scan_first_sum='${b[$i]}';
EOF
done
#echo ${a[$i]} ${b[$i]}

0