July 24, 2009 at 12:28 pm
Dear Friend,
i need your help...
which one SQL query gives me the Faster Output from below...
1). select Auditdata.* from auditdata auditdata
inner join Circlemaster c_mst on
auditdata.circlemaster_id<>C_mst.circlmaster_id
where tatcalltype is null
or
2). select Auditdata.* from auditdata auditdata
inner join Circlemaster c_mst on
auditdata.circlemaster_id not like C_mst.circlmaster_id
where tatcalltype is null
July 24, 2009 at 12:30 pm
the should. The LIKE operation tends to be expensive..
Also, why don't you test it an tell us..
CEWII
July 24, 2009 at 1:12 pm
duplicate post.
please continue here .
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply