sql >> Database >  >> RDS >> Mysql

SQL/PHP:Toon top 3 meest verkochte producten uit database

Probeer dit:

$sql = "SELECT SUM(order_count.number) AS total, image.image_link AS image_link 
FROM product JOIN order_count 
ON product.product_id = order_count.product_id 
JOIN image ON product.image_id = image.image_id
GROUP BY order_count.product_id 
ORDER BY total DESC 
LIMIT 3";


  1. Hoe datum opslaan in MySQL-database?

  2. Voorwaardelijke hulp bij SQL-query's

  3. Hoe FIELD() werkt in MariaDB

  4. Hoe de tabel automatisch bij te werken in MYSQL met behulp van TRIGGER