我收到了错误消息
子查询返回多个值
SELECT title,booking_date
FROM services,user_booking
where services.id=(
select service_id from user_booking where user_id in
(
select distinct id from users where users.email='test')
)
答案 0 :(得分:0)
如果使用=
条件,则必须确保子查询仅返回1行。否则,请使用in
条件。