I am looking for distinct property and have a simple sql as below:
SELECT DISTINCT SFR_Jan_2022.Property INTO Uniq_Properties
FROM SFR_Jan_2022;
Can i count how many property unique value repeated in the table? similar to countif excel formula.
SELECT DISTINCT SFR_Jan_2022.Property INTO Uniq_Properties
FROM SFR_Jan_2022;
Can i count how many property unique value repeated in the table? similar to countif excel formula.