在这里,我们生成了 Crystal SQL,出于性能原因,我需要在 AS/400 db2 上进行相同的操作。您如何在 AS/400 SQL 中编写这些代码?
TodaysDate
like and
<>
在这里,我们生成了 Crystal SQL,出于性能原因,我需要在 AS/400 db2 上进行相同的操作。您如何在 AS/400 SQL 中编写这些代码?
TodaysDate
like and
<>
select ...
from order_table
where order_date = current date and
status_code in ('E', '1', 'X') and
user = 'BLOGGS';
DB2 for i 参考手册可能会有所帮助。