View Single Post
  #2 (permalink)  
Old 06-16-2008, 11:14 AM
Unregistered
 
Posts: n/a
Default ANY answer. Re: Using SQL Query, find minimun price of each brand.?

[sql]select brand_name , min(price)
from table_name
order by brand_name[/sql]
Reply With Quote