Jump to content

Recommended Posts

Hola muy buenas,

Estoy intentando seleccionar ciertos parámetros en la base de datos, en mi caso las tablas tienen prefijo diferente al que viene por defecto.

SELECT pl.name AS 'Nombre'
FROM prstshp_product_carrier AS ppl
LEFT JOIN prstshp_product_lang AS pl ON p.id_product = pl.id_product
GROUP BY ppl.id_product

SELECT pl.name AS 'Nombre'
FROM prstshp_product_carrier AS ppl
LEFT JOIN prstshp_product_lang AS pl ON p.id_product = pl.id_product
GROUP BY ppl.id_product

Estoy intentando sacar la tabla prstshp_product_carrier pero que al final de la tabla que aparece el id_shop me aparezca el nombre por id de producto, algo estoy haciendo mal y como soy muy nuevo en esto no se que puede ser, si me pueden ayudar estaría muy agradecido,

Saludos y Gracias!

Link to comment
Share on other sites

solucionado

SELECT pc.id_product, pc.id_carrier_reference, pc.id_shop ,pl.name AS 'Nombre'
FROM prstshp_product_carrier AS pc
LEFT JOIN prstshp_product_lang AS pl ON pc.id_product = pl.id_product
GROUP BY pc.id_product;

Saludos!

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...