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.
Field1 Field2
1 1
1 1
1 2
1 3
SELECT Field1, MAX(Field2) AS Field2 FROM MyTable
GROUP BY Field1
SELECT Field1, Field2 FROM MyTable
GROUP BY Field1, Field2