Hello, I have the following table:
tickername | tickerbbname | tickertype
------------+---------------+------------
USDZAR | USDZAR Curncy | C
EURCZK | EURCZK Curncy | C
EURPLN | EURPLN Curncy | C
USDBRL | USDBRL Curncy | C
USDTRY | USDTRY Curncy | C
EURHUF | EURHUF Curncy | C
USDRUB | USDRUB Curncy | C
in which I don't want any of either tickername or tickerbbname column entries ever to be duplicates. I've already created the table and have lots of data in it (which I have already checked to be unique). As it gets larger though, room for error creeps in. Any way of adding UNIQUE constraints ex-post?
Thanks,