Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.57 KB | None | 0 0
  1. SELECT  `ModeleVehicule`.`IdModel` ,  `LanguageDescriptions`.`Description`
  2. FROM  `ModeleVehicule` ,  `LanguageDescriptions` ,  `TypeVehicule` ,  `ProduitVehicule` ,  `Produits`
  3. WHERE  `ModeleVehicule`.`ManufacturerID` =16
  4. AND  `ModeleVehicule`.`CodeDesignation` =  `LanguageDescriptions`.`CodeDesignation`
  5. AND  `ModeleVehicule`.`IdModel` =  `TypeVehicule`.`VehicleModelId`
  6. AND  `ProduitVehicule`.`IdVehicle` =  `TypeVehicule`.`IdVehicle`
  7. AND  `Produits`.`CategorieId` =13
  8. AND  `Produits`.`ProduitId` =  `ProduitVehicule`.`ProduitId`
  9. GROUP BY  `ModeleVehicule`.`IdModel`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement