如何在Microsoft SQL Server 2008中运行查询之前知道多少行会受到影响

问题描述

简短的答案是没有。

sql Server中执行查询..atleast之前,您无法获得行数。

最好的方法是使用

Select count(*) from <table> where <condtion>

后执行您的实际查询

 [delete]or [update] [set col='val']
 from <table> where <condtion>

解决方法

我已经阅读了一些有关ROWCOUNT的信息,但它并不是我想要的。根据我的理解,行计数指出了运行查询后受影响的行数。我正在寻找的是在运行查询之前知道的。这可能吗?