一个txt文件,共6行,每一行是一个数字。
想把这六个数字分别保存到一个变量里。
然后这六个变量在sqlplus中通过使用update语句插入ORACLE。
谢谢。
------解决方案--------------------
name.txt
aaa
bbb
ccc
value.txt
1
2
3
diff -y name.txt value.txt
------解决方案--------------------
column -t
------解决方案--------------------
tr \
------解决方案--------------------
=
------解决方案--------------------
tr \\n ,
------解决方案--------------------
sed "s/,$//"
------解决方案--------------------
xargs -I {} echo "update table set {}"
update table set aaa = 1,bbb = 2,ccc = 3