查询计划或执行计划以百分比形式指定成本。是根据什么百分比计算的?

发布于 2024-11-07 08:19:38 字数 253 浏览 0 评论 0原文

查询计划执行的成本(按百分比计算)是多少?

SELECT a.au_fname + ''+ a.au_lname AS 'Author Name',
t.title
FROM authors a INNER JOIN titleauthor ta
ON (a.au_id = ta.au_id) INNER JOIN titles t
ON (ta.title_id = t.title_id)

select * from authors

What is the cost, percentage-wise, in query plan execution?

SELECT a.au_fname + ''+ a.au_lname AS 'Author Name',
t.title
FROM authors a INNER JOIN titleauthor ta
ON (a.au_id = ta.au_id) INNER JOIN titles t
ON (ta.title_id = t.title_id)

select * from authors

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无妨# 2024-11-14 08:19:38

在 SQL Server 中:

成本百分比是与执行的整批查询的相对百分比。如果您执行单个查询,则百分比始终为 100%。

批次中的每个查询
显示已分析的内容,包括
每个查询的成本百分比
该批次的总成本

http://msdn.microsoft.com/en-us/library/ms178071.aspx

In SQL Server:

Cost percentage is the relative percentage to the whole batch of queries executing. If you are executing a single query, the percentage for that would be always 100%.

Each query in the batch that is
analyzed is displayed, including the
cost of each query as a percentage of
the total cost of the batch
.

http://msdn.microsoft.com/en-us/library/ms178071.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文