Search code examples
abapopensql

Open SQL statement with a subtraction in WHERE condition


SELECT * FROM dbtab
WHERE a - b GE c.

The problem is in ABAP with the a - b part. Is there a way to make such a WHERE?


Solution

  • As far as I can see, that's not possible with Open SQL. And btw, you don't select from an internal table (but usually into it).