表User总记录约250W左右,其中regdate为时间型字段,为了测试,还特意建了索引,(没有建索引时:查询成本(各50%),时间都是6秒左右) 查询1:查询成本(相对于批处理): 88.11%  时间:1秒 
select count(*) from User where datediff(year,regdate,getdate())=0 查询2:查询成本(相对于批处理): 11.89%  时间:1秒 
select count(*) from User where regdate>='2009-1-1' and regdate <='2009-12-30' 
现在主要问题。查询成本是怎么统计的,能说明什么问题?
 
查询统计结果后面还有个"(相对于批处理)",我要是单独运行这条语句,算是"相对于批处理"吗?