select ( select count(distinct(id)) from table where trunc(insert_time) > =to_date(&dateFrom,'dd/MM/yyyy') and trunc(insert_time) <= to_date(&dateTo,'dd/MM/yyyy')) from dual;这是之前的脚本,目前问题是用户id的记录日期insert_time会出现多次,想要按照首次记录日期计在一定日期区间出现的次数,一天出现多次算一次。请问怎么修改?