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

MySQL Inner Join Query Flere tabeller

Prøv dette:

SELECT 
  p.id,
  p.name,
  l.url,
  o.user_id,
  o.pricing_id
FROM orders AS o
INNER JOIN products_pricing AS pp ON o.pricing_id  = pp.id
INNER JOIN products         AS  p ON pp.product_id = p.id
INNER JOIN listings         AS  l ON l.user_id = o.user_id
WHERE o.user_id ='7' 
  AND l.id = 233 
  AND l.url = 'test.com';
 

SQL Fiddle Demo

For de eksempeldata, du har sendt i dit spørgsmål, vil dette give dig:

| ID | NAME | URL | USER_ID | PRICING_ID | ------------------------------------------------------ | 33 | testproduct | test.com | 7 | 37 |

  1. Maksimalt (anvendeligt) antal rækker i en Postgresql-tabel

  2. Multi-threading C#-applikation med SQL Server-databasekald

  3. 2 måder at få partitionsoplysninger til en tabel i SQL Server (T-SQL)

  4. Konverter interval til minutter