REVERSE
SPLIT_PART
INITCAP
Returns the nth part after splitting by a delimiter.
SPLIT_PART(str, delim, n)
Enter values below to update the example in real time.
email
domain
users
-- 이메일에서 도메인 추출 SELECT SPLIT_PART(email, '@', 2) AS domain FROM users;