如何从生成的Crystal中编写SQL语句

时间:2013-05-17 14:43:38

标签: sql db2 ibm-midrange

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

TodaysDate 
 like  and
 <>

1 个答案:

答案 0 :(得分:1)

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

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