前端之家收集整理的这篇文章主要介绍了
shell 读mysql内数据,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sql="select id,val from test1 order by id desc limit 1" RESULT=$(
MysqL -uroot -proot@123 test -e "${
sql}" | awk 'NR > 1' ) rs=`echo ${RESULT} | awk -F ' ' '{print $1}'` echo ${rs}
原文链接:https://www.f2er.com/bash/392456.html