First query is for select institutions and second is for get latest review to this institution.
First query:
SELECT
instituteId,
instituteName,
description
FROM institutions
WHERE instituteId IN ('1','2','3')";
Second query:
SELECT
name,
review,
timestamp
FROM reviews
WHERE instituteId='1'
ORDER BY timestamp DESC
LIMIT 1;