I have a check constraint in SQL Server that only allows 3 possible values, the expression is like this:
(([READ_WRITE] = 'H' OR [READ_WRITE] = 'W' OR [READ_WRITE] = 'R'))
I want to update this check constraint with a query because I don't have access to Management Studio.