Find products that are not associated to a category – Phpmyadmin
Having the following MySQL tables: products: id, name, description categories: id, name, description prodcat: id_product, id_catategory How can I select all the "products" fields and all the "categories" fields of the products that have not been associated to a category?…