This is my table:
MyTable: Id, Title, Point, Date
So I need to check if all points and Dates for Title = 'member1' is equal to all points and Dates for Title = 'member2' Then Set @flag = 1 Else Set @flag = 0 The Exact Two Select is :
Select Point, Date From MyTable Where Title = 'member1'
And
Select Point, Date From MyTable Where Title = 'member2'
I need all rows checked if equal or not. What is your suggestion?
Update:
Assume the following example:
Title Point Date
T1 1 2012-04-26 07:14:34.000
T1 2 2012-07-26 07:14:34.000
T1 3 2012-06-26 07:14:34.000
T1 4 2012-05-26 07:14:34.000
T2 1 2012-04-26 07:14:34.000
T2 2 2012-07-26 07:14:34.000
T2 3 2012-06-26 07:14:34.000
T2 4 2012-05-26 07:14:34.000
T3 4 2012-05-26 07:14:34.000
T3 3 2012-06-26 07:14:34.000
T4 1 2012-04-26 07:14:34.000
T4 2 2012-07-26 07:14:34.000
T4 3 2012-06-26 07:14:34.000
T4 4 2012-05-27 07:14:34.000 -- 26 to 27
T5 2 2012-12-27 07:14:34.000
T5 6 2012-05-27 07:14:34.000
T5 3 2012-07-26 07:14:34.000
In this example just T1 values And T2 Values are equal and other ones are not.
