Codrin Strîmbei
Codrin Strîmbei

Reputation: 125

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?

Upvotes: 0

Views: 1553

Answers (1)

vwegert
vwegert

Reputation: 18483

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).

Upvotes: 0

Related Questions