I am executing the following query and got the error \"Subquery returns more than 1 row\"
My Query is
SELECT pkTicketID, TicketReplyDateAdded,
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.
LIMIT 1