SOUNDEX converts an alphanumeric string to a four-character code that is based on how the string sounds when spoken.
Example
SELECT SOUNDEX ('Jan'), SOUNDEX ('Jane');
Result:
(No column name) (No column name)
J500 J500
INSERT INTO Sales (ProductName, Price, [Date]) VALUES ('Product1', 200, GETDATE());