Open SQL 获取符合条件的记录

(1)方式一:使用动态where条件

将where条件通过concatenate进行字符串拼接后,放到内表中,然后再select where中使用该内表,从而实现动态where 条件的功能。

tables : spfli.

data : itab(72) occurs 10 with header line.

parameters : city1(10) type c ,city2(10) type c .

concatenate 'CITYFROM = ''' city1 '''' into itab.

append itab.

concatenate 'or CITYFROM = ''' city2 '''' into itab.

append itab.

loop at itab.

  write : itab.

endloop.

skip.

select * from spfli where (itab).

  write : / spfli-cityfrom.

endselect .

(2)方式二:使用for all entries in的方式。


tables : spfli.

data : begin of itab occurs 10 ,

        cityfrom like spfli-cityfrom,

        cityto    like spfli-cityto,

      end of itab.

itab-cityfrom = 'NEW YORK'.

itab-cityto = 'SAN FRANCISCO'.

append itab.

itab-cityfrom = 'ROME'.

itab-cityto = 'TOKYO'.

append itab.

select * from spfli for all entries in itab where

  cityfrom = itab-cityfrom  and cityto = itab-cityto .

  write : / spfli-cityfrom ,spfli-cityto.

endselect


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值