我可以按照以下步骤从 Visual Studio 获取存储过程的结果:
0) Select View > Server Explorer
1) Locate the Data Connection that contains the SP of interest.
2) Right-click the SP and select Execute; if any args are required, it will allow you to populate those in a dialog and then proceed with the execution
如果您提供了有效的参数(并且 SP 返回数据),结果将显示在 T-SQL 结果选项卡的网格中。
但是,现在,如果您想查询已返回的“数据集”,例如对特定列的值求和,可以在 Visual Studio.Server Explorer.T-SQL 中直接完成吗?如果是这样,怎么做?
更新
我相信 Khazratbek,但我只能通过右键单击 Data Connection 下的 Tables 文件夹来实例化一个 New Query:
SELECT SUM(QtyShipped), SUM(QtyOrdered) FROM CPSData.
...在最后一个“。”之后作为下拉菜单提供的选项。不包含存储过程 (SQLQuery1.sql) 的结果。
真的有可能吗?