SSC-EWI-OR0033
PL/SQL declaration in WITH is not supported.
Severity
Description
Example Code
Input Code:
WITH FUNCTION get_domain ( url VARCHAR2 ) RETURN VARCHAR2 IS pos BINARY_INTEGER;
len BINARY_INTEGER;
BEGIN
pos := INSTR(url, 'www.');
len := INSTR(SUBSTR(url, pos + 4), '.') - 1;
END; SELECT aValue from aTable;Output Code:
Recommendations
Last updated
