I want to get some data, from 2 fields, but I don't want to select distinctly by them
In my tables I have
Table 1:
A B TIME
Table 2:
A B C D E TIME
my select is
select distinct a, max(2.TIME) from 1 , 2, where 1.a = 2.a and 1.TIME > "2008" GROUP by a
The problem I have is I want to get information about 2.b and 2.c from the fields in this select? is there anyway to do it??? thank you.
In my tables I have
Table 1:
A B TIME
Table 2:
A B C D E TIME
my select is
select distinct a, max(2.TIME) from 1 , 2, where 1.a = 2.a and 1.TIME > "2008" GROUP by a
The problem I have is I want to get information about 2.b and 2.c from the fields in this select? is there anyway to do it??? thank you.