SSMS 在单独的结果选项卡中显示单独的查询
的查询,有没有办法让多个查询的结果显示在多个选项卡中?
SELECT TOP 1000 *
FROM SomeDB
SELECT TOP 1000 *
FROM SomeOtherDB
在 SQL Server Management Studio 中,如果我运行类似“结果显示在一个选项卡中但在中间水平分割”
In SQL Server Management Studio, if I run a query like
SELECT TOP 1000 *
FROM SomeDB
SELECT TOP 1000 *
FROM SomeOtherDB
The results display in one tab but split horizontally down the middle, is there any way to get the results of multiple queries to display in multiple tabs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工具->选项->查询结果->结果到网格 ->在单独的选项卡中显示结果
这将在单独的选项卡中显示结果(尽管所有结果集都将位于该选项卡中)。
据我所知,除了拥有单独的查询窗口之外,没有办法按照您的需要分离出不同的结果集。
Tools -> Options -> Query Results -> Results To Grid -> Display Results in Separate Tab
This will show the results in a separate tab (though all result sets will be in that one tab).
As far as I know, there is no way to separate out the different result sets as you seem to want, apart from having separate query windows.