Viewing 2 posts - 1 through 2 (of 2 total)
Is there any logical limit on the amount of joins you should perform on a query. In my case, there are many lookup tables which i would have to reference...
April 28, 2004 at 7:31 am
#504494
Try this guy out....not pretty, but might work for you.
CREATE PROCEDURE GetRows
@Column varchar(25)
AS
DECLARE @sql Varchar(50)
SET @sql...
April 15, 2004 at 9:07 pm
#503057