需要计算这个 Interbase Distinct SQL

Need a count of this Interbase Distinct SQL

我在这两个字段上有以下工作的 Distinct Interbase SQL。我需要将其修改为 return 这些不同记录的计数。

select distinct ap.propertyuid, ap.adjpropertyuid
from adjproperty ap
where ap.payyear = 2019
order by 1, 2

数据

propertyUID adjpropertyUID payyear

2019 年 15 月 21 日

15 22 2019

16 23 2019

16 23 2019

16 25 2019

2019 年 17 月 33 日

2019 年 17 月 33 日

应该return数到五,

是这样的吗?:

select count(distinct ap.propertyuid), count(distinct ap.adjpropertyuid)
from adjproperty ap
where ap.payyear = 2019
order by 1, 2
select count(distinct ap.propertyuid || ap.adjpropertyuid)
  from adjproperty ap
 where ap.payyear = 2019