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 Field1, Field2, SUM(Field3) From SomeTable
GROUP BY Field1, Field2
SELECT Field1, Field2, Sum(Field3), NewField FROM SomeTable
INNER JOIN TheOtherQuery on SomeTable.FieldName = TheOtherQuery.SomeField
GROUP Field1, Field2, NewField
SELECT monthPay, max(salary) As MthMax
FROM sal
GROUP BY MonthPay;
=IIf(IsNull(MthMax),Null,Dept)