Hi
im writing a sql query with Left join :
sel
a.*
,b.ordr_date
from tbl_cust_info a
left join tbl_ordr_date b on a.customer=b.customer
and
( b.ordr_date between a.starting_date and a.ending_date)
it is showing me no more spool space , can i mention the BETWEEN condition in the Left join ?
if i use the 'Where clause' also the query is not executing . suggest me
↧