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 PG_COMM.EMPLID,Count(PG_COMM_1.EMPLID) AS SeqNbr
FROM PG_COMM LEFT JOIN PG_COMM AS PG_COMM_1 ON PG_COMM.EMPLID = PG_COMM_1.EMPLID
WHERE PG_COMM.EARN_BEGIN_DT<=PG_COMM_1.EARN_BEGIN_DT
GROUP BY PG_COMM.EMPLID
ORDER BY PG_COMM.EMPLID;