Viewing 2 posts - 1 through 3 (of 3 total)
All I want are records that have all the matching grouporitem belongs to code 'ABC' in other profiles should be an exact match of grouporitems in each profile.
April 26, 2011 at 9:18 am
#1315957
Here is the complete script and output
DECLARE @Sample TABLE
(
Code CHAR(4) ,
IGP VARCHAR(255) ,
[Description] VARCHAR(255) ,
GroupOrItem CHAR(4)
) ;
INSERT INTO @Sample
VALUES (...
April 26, 2011 at 9:15 am
#1315954