Viewing 2 posts - 1 through 2 (of 2 total)
Project#1
select a.giftkey,a.giftid,a.gifthonor, b.gifthnrkey,b.giftid,b.gifthonor
from gifts a left outer join dbo.gifts b
on a.giftid = b.giftid
where a.gifthonor is not null
It simply repeats data. I am trying to list a.giftkey once then...
February 18, 2009 at 9:38 am
#946074
I have a similar issue except I want to display an ID and and HonorDesigination as follows
ID HonorDesignation
111 M
111 ...
December 2, 2008 at 2:50 pm
#906524