with aaa as
(
select rawtohex('ABC') as col1 from dual
)
select replace(WM_CONCAT(row1),',','') as message
from
(
select '00'||substr(col1,level,2) as row1, level
from aaa
where mod(level,2) = 1
connect by level <= length(col1)
)
by 백면서생
[2015.04.14 16:35:17]
select regexp_replace(col1,'(.{2})','00\1') from aaa
by 아발란체
[2015.04.14 17:35:49]
SELECT REGEXP_REPLACE(RAWTOHEX('ABC'), '(.{2})', '00\1') FROM DUAL
by DarkBee
[2015.04.14 18:19:58]
한글 같은경우엔 문제의 내용이 애매해지네요.
한글은 성수님이 작성한 형태대로 해야겠네요
댓글등록
SQL문을 포맷에 맞게(깔끔하게) 등록하려면 code() 버튼을 클릭하여 작성 하시면 됩니다.