查询计划或执行计划以百分比形式指定成本。是根据什么百分比计算的?
查询计划执行的成本(按百分比计算)是多少?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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%.
http://msdn.microsoft.com/en-us/library/ms178071.aspx