Viewing 7 posts - 1 through 7 (of 7 total)
sure and thanks for viewing,
my original query
Select car_model,max(year) from table auto where car_model='cherokee' group by car_model
results
cherokee 2001
heres what i get when i add ext_color
Select car_model,max(year),ext_color from table auto where...
February 22, 2008 at 12:15 pm
yes that was what i saw in the tutorial, but the issue i face is when you add color to the group by it no longer respects my max...
February 22, 2008 at 8:32 am
thanks sqlbill,
Select car_model,max(year) from table auto group by car_model
here is what i came up with and it works great. one last question if i added a column to this...
February 12, 2008 at 8:44 am
thanks for the point in the right direction i'll update here once i get the query working
nick
February 12, 2008 at 6:41 am
perfect that worked like a charm
thank you for your help
January 15, 2007 at 1:36 pm
the table names are
tbl_a , tbl_b
and the columns are
LINK_100, 100
LINK_101, 101
January 15, 2007 at 12:35 pm
Viewing 7 posts - 1 through 7 (of 7 total)