crystal report的查询公式与oracle 的sql语句

要查询 cust_id='32' 并且 adv_dt是当前日期前一天的记录:
crystal report 的公式查询写法为:
{?CUST_ID}={EX_MASTER.CUST_ID} and
{EX_MASTER.ADV_DT}=CurrentDate-1

CurrentDate的单位就是1天。

oracle 的查询语句
select * from ex_master t
where CUST_ID='32' and
to_char((ADV_DT),'yyyy') = (select to_char(sysdate,'yyyy') from dual) and
to_char((ADV_DT),'mm') = (select to_char(sysdate,'mm') from dual) and
to_char((ADV_DT),'dd') = (select to_char(sysdate,'dd') from dual)-1

修改adv_dt字段的值,该字段为date类型:
update ex_master set ADV_DT = to_date('20110221','yyyy/mm/dd') where lc_no='12345'

IIF (IsNull ({EXLC_MASTER.ADV_AMD_DT}), "通知","修改" )
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值