如何将 sqlcmd 查询的值存储到 shell 脚本中的变量中

如何将 sqlcmd 查询的值存储到 shell 脚本中的变量中

我尝试将 sqlcmd 查询的值存储到变量中并显示输出。例如

cwdusers=$(sqlcmd -S "mydb" -U xxx -P xxxxx -d My_DB -Q "select count(*) from user_table")
echo "Total No of users = $cwdusers"

它给出的输出为:

Total No of users

1440

(1 rows affected)

当我用 1 行运行它时,grep -v "rows"受影响的列会消失,但连字符不会消失。我希望将 o/p 存储在变量中并将其显示在网站中。

相关内容