Código:
select nombre_categoria,nombre_producte,ruta_foto_grande,ruta_foto_pequena,descripcion_producto from producto,foto,categoria where id_foto=producto_id_foto and id_categoria=producto_id_categoria and id_producto='0700' group by nombre_producto;
Código:
SELECT nombre_categoria,nombre_producto,ruta_foto_grande,ruta_foto_pequena,descripcion_producto FROM foto INNER JOIN producto ON foto.id_foto = producto.producto_id_foto categoria INNER JOIN producto ON categoria.id_categoria = producto.producto_id_categoria and id_producto='0700' group by nombre_producto; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'categoria INNER JOIN producto ON categoria.id_categoria = producto.producto_id_' at line 1