I am updating a table 'price_hist' inside a stored procedure in which I have placed a unique key constraint across three fields.
In MySql the INSERT IGNORE command is useful on bulk inserts when a duplicate key is encountered as it prevents the query failing.
How is similar achieved in MsSql?
price_list, part_no, price
How is similar achieved in MsSql?
Comment