solidDB Help : solidDB reference : SQL: Statements : Hints : OR FOR OR
  
OR FOR OR
The OR FOR OR hint is the opposite for UNION FOR OR. It prevents the interpreter from using the UNION-type solution.
Example:
SELECT
--(* vendor(SOLID), product(Engine), option(hint)
-- OR FOR OR *)--
* FROM HIER H1, HIER H2
WHERE H1.P=H2.C OR H1.P=H2.P;
Go up to
Hints