Select case ( 컬럼a에 '인터넷'이 포함되어있으면 ) when true then '인터넷' else 컬럼a end as col1 From table1;
여기서 case조건을 어떻게 해야하나요...
특정값을 바꿔주는 replace처럼 값이 존재하는지 찾아주는 함수는 없나요?
자답입니다.
Case cardn like '%인터넷%' when true then '인터넷' else cardn end as aaa
case when (조건) then 참인경우 else 거짓인경우 end
형태로 사용됩니다.