SQL查询仍然是我最薄弱的一点,所以这里我要问另一个SQL问题。
假设我有两张桌子:拍卖行、和出价。表拍卖包含我的拍卖,表拍卖包含每次拍卖的出价列表。
现在我选择这样的值:
SELECT
`auction_title`,
`auction_seo_title`,
`auction_description_1`,
`auction_unixtime_expiration`,
`auction_startPrice`,
MAX(`bids`.`bid_price`) as `bid_price`
FROM
`auctions`
LEFT