select statement to display NULL ???
Hi to all...
I have this select statement that i want it to display me blank in the fields it doesn't find it.
i know its not finding it in my 3rd line "join DG D on D.SKU=R.SKU" because i need to fields from it and it doesn't find it....
is there a way to do it???
Thanking you in advance
RINO
select * from RainCheck R
join Store S on S.StoreNo=R.StoreID
join DG D on D.SKU=R.SKU
where StoreID=@intStoreNo
order by ID
|