Mysql
 sql >> Database >  >> RDS >> Mysql

Seleziona la media dalla tabella MySQL con LIMIT

Penso che questo sia quello che stai cercando:

SELECT AVG(items.price)
  FROM (SELECT t.price
          FROM TABLE t
         WHERE t.price > '0' 
           AND t.item_id = '$id'
      ORDER BY t.price
         LIMIT 5) items

Restituirà la media dei 5 prezzi più bassi:un'unica risposta.