Есть вот такая вот строка (часть SQL запроса):
SELECT "id_service_support", "name_service_support", "price_service_support" FROM
"service_support",
(SELECT regexp_substr(upper(:name_service_support),'\[b]w[/b]+',1,level) user_input_word
FROM DUAL connect by regexp_substr(:name_service_support,'\[b]w[/b]+',1,level) is not null)
GROUP BY "id_service_support", "name_service_support", "price_service_support"
HAVING SUM(SIGN(INSTR(UPPER("name_service_support"),user_input_word))) > 0
ORDER BY "name_service_support"
На "w" (выделено жирным), компилятор ругается:
Unrecognized escape sequence
Подскажите пожалуйста как в данной ситуации правильно сформировать строку...