Miroslav Sobotka
04/19/2021, 7:34 AMselect count(ID) from employer
The ID column is primary key, so uniq and has no nulls.
Employer.slice(Employer.Id).count()
produces select count(*) from employer
Thanks!tapac
04/19/2021, 4:56 PMEmployer.slice(Employer.Id).selectAll()
Miroslav Sobotka
04/19/2021, 5:53 PMtapac
04/19/2021, 6:03 PMaryeh
06/22/2022, 10:40 PM