Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TOP 5 CallId as IdNumber, Description...
FROM tblCalls
WHERE CallType = 1
ORDER BY CallID
UNION SELECT TOP 5 CallId, Description...
FROM tblCalls
WHERE CallType = 2
ORDER BY CallID
UNION SELECT...
SELECT tbl_Complaint.*
FROM tbl_Complaint
WHERE (((tbl_Complaint.ComplaintID) In (SELECT TOP 5 tlkp_ComplaintCatagories.ComplaintID FROM tlkp_ComplaintCatagories WHERE tbl_Complaint.ComplaintType = tlkp_ComplaintCatagories.ComplaintID)));
WHERE B.ComplaintType = A.ComplaintType