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 *
FROM OneTable
INNER JOIN (SELECT *, ROW_NUMBER() OVER (PARTITION BY CommonField ORDER BY WhatEverYouWant) AS RC
FROM ManyTable) ManyTable ON OneTable.CommonField = ManyTable.CommonFIeld AND ManyTable.RC = 1