SELECT Max(notas_variantes.vigencia_fin) as vigencia FROM notas_variantes LEFT JOIN notas ON notas.id=notas_variantes.nota LEFT JOIN destinos_ciudades ON FIND_IN_SET(destinos_ciudades.id,notas.ciudades) LEFT JOIN destinos_ciudades AS destinos_ciudad ON destinos_ciudad.id= notas.ciudades LEFT JOIN destinos_paises ON destinos_paises.id=destinos_ciudades.pais LEFT JOIN destinos_paises AS destinos_pais ON destinos_pais.id=destinos_ciudad.pais LEFT JOIN destinos_regiones ON destinos_regiones.id=destinos_paises.region WHERE destinos_paises.id = AND notas.habilitar = '1' AND notas_variantes.vigencia_fin>=NOW() ERROR: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 'AND notas.habilitar = '1' AND notas_variantes.vigencia_fin>=NOW()' at line 9 |