I've got tons of sql that uses ? placeholders.

Is there a way to accurately determine which question marks represent
placeholders and which ones don't?

For instance:

  SELECT LENGTH('?') FROM DUAL;

v.s.

  SELECT LENGTH(?) FROM DUAL;

Thanks,
ER

Reply via email to