Postgresql – How to get SQL count of the unique concatenated values in my postgresl DB?
Table has two columns which concatenate as 'ab'. I'd like a count of the unique values from the concatenated columns 'ab', here is what I have so far; initial_db=> SELECT concat(street_num, street_name) AS ab FROM recs limit 5; ab ------------…