我有以下 powershell 命令,它显示 sql 表中的行数。这有效,但它还包括标题:
Invoke-Sqlcmd -ServerInstance "01-SQL1\INSTANCE22" -Database master -Query "select Count(*) from dbo.mytable"
我得到的输出是:
Column1
-------
2450 <= This line is actually displayed under Column1 on a separate line. I just couldn't get it to display properly here.
我需要的唯一输出是如果行数大于 X 行数,则显示行数,否则打印“找到的行数少于 5000 行”。我该怎么做呢?