Oracle database
SELECT * FROM t1, t2 WHERE t1.col1(+) ^= t2.col1;
* col1 is assumed to be CHAR(4) type
Symfoware Server
SELECT * FROM t1, t2 WHERE t1.col1(+) != t2.col1;
* col1 is assumed to be CHAR(4) type
The ^= comparison operator can be specified.
The ^= comparison operator cannot be specified.
Convert using the following procedure:
Locate the places where the keyword "^=" is used.
Ensure that the keyword, "(+)", is either on the right or left-hand side.
Change "^=" to " !=".