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