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