joaoserra69 Posted March 4, 2009 Share Posted March 4, 2009 Bonjour à tous,Je souhaiterais faire une requête SQL qui m'affiche: L'ID du produit, le nom du produit, la catégorie du produit, la description courte et le prix!J'ai essayé quelques trucs cependant les résultats ne sont pas vraiment ceux auxquels je m'attendais... Merci de votre aide! Link to comment Share on other sites More sharing options...
Olecorre Posted March 7, 2009 Share Posted March 7, 2009 SELECT ps_product.id_product, price, description_short, ps_product_lang.name AS product_name, ps_category_lang.name AS category_name FROM ps_product INNER JOIN ps_product_lang ON ps_product.id_product = ps_product_lang.id_product INNER JOIN ps_category_product ON ps_product.id_product = ps_category_product.id_product INNER JOIN ps_category_lang ON ps_category_product.id_category = ps_category_lang.id_category WHERE ps_product_lang.id_lang =2 AND ps_category_lang.id_lang =2 Voici la requete, id_lang=2 pour le FR mettre 1 pour l'anglais ou un auter idenfiant pour la langue Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now