Cita: select * from aforo where nov_id<>0 and (select nov_id from novedades where nov_aprobacion=1 and nov_subtipo=5)
Esta mal planteada tu consulta por que le estas diciendo que te SELECCIONE todo de la tabla aforo DONDE nov_aprobacion=1 Y (aca esta el error) X Valor, Cuando deberias ponerle Y (Una condicion)
nov_id=(subconsulta que solo debe regresar un registro)
Algo asi si, siempre y cuando la subconsulta te regrese un solo valor
Código PHP:
select * from aforo where nov_id<>0 and nov_id=(select nov_id from novedades where nov_aprobacion=1 and nov_subtipo=5)