[SQL] - SQL 문자열 위치 찾기 (find_in_set 함수)

# 문자열의 위치
# find_in_set(찾을 문자열, 찾을 대상) : 찾을 대상에서 문자열의 위치를 리턴함
SELECT FIND_IN_SET('c', 'a,b,c,d,e,f')