Jump to content

Query ottenere prodotti in offerta


giralatina

Recommended Posts

Ciao a tutti

Lato 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

  • 2 weeks later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...