Subquery returns more than 1 row in mysql

后端 未结 3 1172
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-25 00:30

I am executing the following query and got the error \"Subquery returns more than 1 row\"

My Query is

SELECT pkTicketID,
       TicketReplyDateAdded,
           


        
3条回答
  •  孤街浪徒
    2021-01-25 00:41

    One approach is to add LIMIT 1 to your subquery. Another is to figure out if your subquery should logically be able to return more than one row and, if not, to fix it.

提交回复
热议问题