我正在使用shell脚本查询配置单元表
last_val="`hive -e "select max(id) from ${hivedatabase}.${table}"`"
echo var1="$last_val"
``` `When the last_val = "NULL" then I want the last_val to be zero` 我试过像下面这样,但我仍然得到空
function value
{
if [ "$last_val" = "NULL" ];then
echo "0"
elif [ "$last_val" != "NULL" ];then
echo "$last_val"
fi
}
echo var2="$(value)"
我想在使用sqoop的增量导入中使用这个值,比如
select * from testing.1234abc check column id > value
如何在shell脚本中实现这一点
1条答案
按热度按时间yduiuuwa1#
我在用这种方法,试试看: