REPLACE
CHARINDEX
PATINDEX
Returns the position of a substring.
CHARINDEX(substr, str [, start])
Enter values below to update the example in real time.
email
at_pos
users
-- '@' 위치 찾기 SELECT email, CHARINDEX('@', email) AS at_pos FROM users;