0

在这里,我们生成了 Crystal SQL,出于性能原因,我需要在 AS/400 db2 上进行相同的操作。您如何在 AS/400 SQL 中编写这些代码?

TodaysDate 
 like  and
 <>
4

1 回答 1

1
select ... 
  from order_table 
  where order_date = current date and
        status_code in ('E', '1', 'X') and
        user = 'BLOGGS';

DB2 for i 参考手册可能会有所帮助。

于 2013-05-17T19:25:23.913 回答