calzadosrosi Posted June 15, 2021 Share Posted June 15, 2021 Hola, A ver si alguien me puede ayudar, necesito crear una consulta sql que genere un listado con los productos que tengan seleccionada por defecto una talla agotada. Tengo conocimientos limitados de sql.... He intentado esto: SELECT p.reference, p.default_on, i.name, s.quantity, t.visibility FROM ps_product_attribute p LEFT JOIN ps_product_attribute_combination x ON (p.id_product_attribute = x.id_product_attribute) LEFT JOIN ps_product t ON (p.id_product = t.id_product) LEFT JOIN ps_attribute_lang i ON (i.id_attribute = x.id_attribute) LEFT JOIN ps_stock_available s ON (p.id_product = s.id_product) WHERE p.default_on = 1 AND p.quantity = 0 Pero no obtengo los resultados que busco. Estoy convencido que no tiene que ser complicado, pero estoy atacado.... a ver si alguien me puede mostrar el camino hacia la luz Gracias de antemano! Saludos 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