select (select Nombre
from Pacientes
where idPacientes= any(select idPaciente
from Citas
where Dias_idDia= any(select idDia
from Dias
where fecha = '2013-10-15'))) as 'Nombre',horaInicio, horaTermino,actividad,observacion,recordar,ciudad,tipoCita
from Citas
where Dias_idDia = any (select idDia
from Dias
where fecha='2013-10-15')
order by horaInicio;
我有錯誤1242,如果有人可以幫助解決這個問題,因爲它給我在我的系統這麼多麻煩。 TY我有錯誤1242子查詢返回超過1行
看到加入。祝你好運。 – Strawberry