Can anyone help me convert this access statement to a mysql statement that works
select top 50 a.Unique_ID, a.Date_Creation, a.createdBy_UserName, a.replies, a.views, a.lastPost_UserName, a.subject, a.Date_LastPost, a.locked, a.announcement, a.lastPost_UserID, a.createdBy_UserID, a.movedFrom, (select Visit_Date from Gerobase_Forum_TopicUserVisit b where b.user_ID = 27 and b.topic_ID = a.Unique_ID limit 1) as lastVisit, (select answer from Gerobase_Forum_Messages c where c.answer = true and c.topic_ID = a.Unique_ID limit 1) as answered from Gerobase_Forum_Topics a where ( a.subject like '%place%' and a.forum_ID in (24)) order by a.announcement, a.Date_LastPost desc
select top 50 a.Unique_ID, a.Date_Creation, a.createdBy_UserName, a.replies, a.views, a.lastPost_UserName, a.subject, a.Date_LastPost, a.locked, a.announcement, a.lastPost_UserID, a.createdBy_UserID, a.movedFrom, (select Visit_Date from Gerobase_Forum_TopicUserVisit b where b.user_ID = 27 and b.topic_ID = a.Unique_ID limit 1) as lastVisit, (select answer from Gerobase_Forum_Messages c where c.answer = true and c.topic_ID = a.Unique_ID limit 1) as answered from Gerobase_Forum_Topics a where ( a.subject like '%place%' and a.forum_ID in (24)) order by a.announcement, a.Date_LastPost desc