In column 1 I have 4 values
N
No
Y
Yes
I tried to replace N with No and Y with Yes with the following code
UPDATE nashupdated
SET SoldAsVacant = REPLACE(SoldAsVacant, "N", "No"),
SoldAsVacant = REPLACE(SoldAsVacant, "Y", "Yes");
However, it also replaces the "Y" in "Yes" for example, becoming "Yeses"
How should I write the function so that it looks for the entire string only?