0
The product code I pass to sql via php.
For example $cd_product = 2; I would like to list everything but the product record (cd_product != 2).
So far so good.
However I would also like only the records of the table (product table) with the code of the category of this product (2).
SELECT *
FROM tabela_produto
WHERE cd_produto != 2 AND cd_categoria = (como saber o código da categoria desse produto que foi eliminada)
The
cd_categoria
is in the same table as thecd_produto
?– R.Santos
Yes in the same table.
– Eder
select * FROM tabela_produto WHERE cd_produto != 2 AND cd_categoria = (select cd_categoria where cd_produto = 2 )
. Try this, and tell me if that’s what you really want– R.Santos
Right! Thank you.
– Eder