The product code I pass into the sql via php.
For example $ cd_product = 2; I would like to list everything but the record for this product (cd_product! = 2).
So far so good.
But I would just like the records of the table (product_table) with the category code for that 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)