giralatina Posted November 3, 2008 Share Posted November 3, 2008 Ciao a tuttiLato back-end vorrei ottenere una lista di tutti i prodotti che sono in offerta.faccio questa query ma non mi restituisce cio che desidero mysql> select pr.name,pr.id_lang, ps.on_sale from ps_product_lang as pr, ps_product as ps where pr.id_lang=9 and ps.id_product=pr.id_product and ps.on_sale=1; Link to comment Share on other sites More sharing options...
Nicodemo Posted November 10, 2008 Share Posted November 10, 2008 Perche non lavori con il codice del modulo offerte, puoi implementarlo con un pò di codice in admin Link to comment Share on other sites More sharing options...
giralatina Posted November 21, 2008 Author Share Posted November 21, 2008 Intanto voelvo fare la query Link to comment Share on other sites More sharing options...
disarci Posted November 21, 2008 Share Posted November 21, 2008 Ciao,tolto che io cercherei di usare le classi del programma già fatte e comode e soprattutto protette,nulla di toglie di crearti una tua query,io ti consiglio l'inner join: SELECT * from ps_product INNER JOIN ps_product_lang ON ps_product.id_product = ps_product_lang.id_product WHERE ps_product_lang.id_lang=x and ps_product.on_sale=1 prova così ovviamente al posto dell'asterisco poi scegli i campi che ti servono 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