Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 ABAP 中进行这样的查询,但这不起作用。
SELECT * FROM table INTO i_tab WHERE amount = 100,15
我试过: WHERE amount = '100,15' 但这也不起作用。
如何在我的 where 语法中指定小数点?
正确的语法是:
SELECT * FROM table INTO i_tab WHERE amount = '100.15'
我通过将逻辑更改为
WHERE amount > 100 AND amount < 101