Jump to content

Edit History

chief

chief

A solution for display all products without features assigned.

from my friend Jay taniguchi

SELECT
    p.id_product
FROM
    ps_product AS p
WHERE
    p.id_product NOT IN(
    SELECT
        f.id_product
    FROM
        ps_feature_product AS f
)

 

chief

chief

A solution for display all products without features assigned.

from my friend Jay taniguchi

SELECT
    p.id_product
FROM
    ps_product AS p
WHERE
    p.id_product NOT IN(
    SELECT
        f.id_product
    FROM
        ps_feature_product AS f
)

×
×
  • Create New...