Good morning,
Is there a way to calculate the Count() using two fields instead of one? I am looking for a way find the frequency of two fields together. Something like Count(field1, field2)
This is the SQL statement:
SELECT COUNT(*) AS total_records
FROM (
SELECT DISTINCT
[field1],
[field1]
FROM MyLayer
) AS distinct_records;