diff options
author | Ivan Kohler <ivan@freeside.biz> | 2021-04-21 11:30:50 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2021-04-21 11:30:50 -0700 |
commit | b0888dc8399fc4e8d75c874c00d01366eacf5596 (patch) | |
tree | 6401078e74ddd0650708f826dacb960ba3b758c3 /FS | |
parent | bd33fbeb07a15412dfa02be60f2effd94103fb58 (diff) |
eliminate dups, RT#85671
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Report/FCC_477.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Report/FCC_477.pm b/FS/FS/Report/FCC_477.pm index bb01db4c8..760f6f22d 100644 --- a/FS/FS/Report/FCC_477.pm +++ b/FS/FS/Report/FCC_477.pm @@ -384,7 +384,7 @@ sub fbd_sql { my $order_by = 'censusblock, agentnum, technology, is_consumer, is_business'; - "SELECT ".join(', ', @select) . " + "SELECT DISTINCT ".join(', ', @select) . " FROM $from WHERE ".join(' AND ', @where)." ORDER BY $order_by |