Viewing 4 posts - 1 through 5 (of 5 total)
Ninja's_RGR'us (6/1/2011)
SELECTT.name,
STUFF((
SELECT
...
June 1, 2011 at 9:48 am
Jeff - I am very interested in an RBAR-less solution
Declare @InFoodID int
SET @InFoodID = 2
SELECT
AnimalFood.FoodID, Animal.AnimalName
FROM
AnimalFood INNER JOIN
Animal ON AnimalFood.AnimalID = Animal.AnimalID
WHERE
(AnimalFood.FoodID...
June 1, 2011 at 8:16 am
Mister Sachmo,
Also, yes I wanted to allow for #3 Duck, because it might come back in season.
The while works, but I am interested in something with the best...
June 1, 2011 at 7:45 am
Thanks Mister Sachmo (& I did make a mistake on the Chicken & Turkey examples).
June 1, 2011 at 7:32 am
Viewing 4 posts - 1 through 5 (of 5 total)