从表中选择“最低值”为多个“ids”

时间:2011-05-20 13:17:50

标签: mysql

昨晚我在使用sql MIN()时读到了,我现在明白它是如何工作的。但是,我想知道,我该怎么办

SELECT MIN(card_price)
FROM card_lookup_values 

并显示每张卡的最低“价格”。很多卡在card_price栏中有5-9个价格。我想我一直在寻找:

 card_id   card_price
    0001      2
    0002      99
    0003      22.3

1 个答案:

答案 0 :(得分:1)

您需要group by card_name

考虑阅读有关聚合函数的本教程:

http://www.postgresql.org/docs/9.0/static/tutorial-agg.html