I am using q'(...)', but in the string also i have () but it not throwing any error
but when i check in google i got below statement regarding q operator.
Syntax:
The syntax is q'[...]', where the "[" and "]" characters can be any of the following as long as they do not already appear in the string.
!
[ ]
{ }
( )
< >
query:
SELECT q'(SELECT count(*) FROM employees WHERE last_name = 'Smith';)'
FROM dual;
My question is why it not throwing error