NOOP v17
The NOOP
function returns a string without any checking.
NOOP(str <anycompatible>) RETURN <anycompatible>;
Parameters
str
The input string.
Examples
edb=# SELECT sys.DBMS_ASSERT.NOOP('Literal with ''''two single'''' quotes.') FROM DUAL; noop ------------------------------------- Literal with ''two single'' quotes. (1 row) edb=# SELECT sys.DBMS_ASSERT.NOOP('Literal with no quotes.') FROM DUAL; noop ------------------------- Literal with no quotes. (1 row)
- On this page
- Parameters
- Examples