I have a query below and would like to know if it is possible to get more than 1 result. I would like to get the 4 most recent entries.
Thanks!
select c.email,c.text,m.alertDataID
from client_users as c, monitor_alerts as a, monitor_alerts_data as m
where c.id=a.userID and a.alertID=m.alertID and
m.alertDataID = (SELECT alertDataID FROM monitor_alerts_data ORDER BY alertDataID DESC LIMIT 1)
LIMIT 4