Good evening,
I'm doing a inner join
of 3 tables but I can not get it to work I should have some error that I can not detect or do the right way I'm new to it inner join
PHP
SELECT *, (SELECT * FROM categorias_estabelecimentos WHERE categoria_slug = :categoria_slug) FROM estabelecimentos
INNER JOIN estabelecimentos_anexos ON estabelecimentos_anexos.id_mae = estabelecimentos.id
WHERE estabelecimentos.id = categorias_estabelecimentos.estabelecimento_id
AND estabelecimentos.activo = :activo
AND estabelecimentos_anexos.seccao = :seccao
ORDER BY pos ASC