Top
Symfoware Server V12.1.0 Application Development Guide
FUJITSU Software

B.1.1 Comparing with the ^= Comparison Operator

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


Feature differences
Oracle database

The ^= comparison operator can be specified.

Symfoware Server

The ^= comparison operator cannot be specified.

Conversion procedure

Convert using the following procedure:

  1. Locate the places where the keyword "^=" is used.

  2. Ensure that the keyword, "(+)", is either on the right or left-hand side.

  3. Change "^=" to " !=".