求sql高手优化sql语句

selecttop20cp.PosID,cp.PosName,cp.ComId,cp.ContactPerson,cp.WorkLocation,cp.PosDescri... select
top 20 cp.PosID,
cp.PosName,
cp.ComId,
cp.ContactPerson,
cp.WorkLocation,
cp.PosDescription,
cp.ExamNotice,
cp.ExamAddress_P,
cp.ExamAddress_C,
cp.ExamAddress,
cp.Address_P,
cp.Address_C,
cp.Address,
cpp.CheckFlag,
cp.updatedate as UpdateTime ,
(
select
comname+'######'+convert(varchar(10),checkflag)
from com_info with(nolock)
where comid = cp.comid
)
as baseComInfo
from com_position cp with(nolock)
left join com_PosProperty cpp with(nolock) on cp.posid=cpp.posid
where cp.posstate = 2
and cp.endvaliddate>=getdate()
and (cpp.PosType=0 or cpp.postype is null)
and cp.comid in (select comid from com_info where checkflag = 2)
展开
 我来答
flyingFish211
2012-07-06 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
try this:

建议
1) getdate()方法用具体值替换,
2) cp 可以考虑
from (select * from com_position where posstate = 2) cp 替换,过滤条件cp.comoid in xxx也可以考虑加入这里,具体取决于
cp.comoid能过滤掉多少数据===〉目的,减少left join数据量
同样原理也可以考虑对cpp实行,方案就是
select top 20 ...
from (select xx from xxx where xxx) cp left join (select xxx from txxx where xx) cpp
on cp.posiid = cpp.posid
知识杂集
2012-07-06 · TA获得超过200个赞
知道小有建树答主
回答量:270
采纳率:0%
帮助的人:207万
展开全部
初步查看,有一个条件与列是可以使用表关联进行合并替换的。
(select comname + '######' + convert(varchar(10), checkflag)
from com_info with(nolock)
where comid = cp.comid) as baseComInfo

and cp.comid in (select comid from com_info where checkflag = 2)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式