EXPORT TO 'E:\jk.del' OF DEL
select lu.user_org_name 部门,lu.user_id "4A账号",lu.user_name 员工姓名,
case jk.action
when 'query' then '进入金库报表审批界面'
when 'request' then '申请金库审批'
when 'auth' then '金库审批验证通过'
else '其他'
end 金库操作 ,jk.start_time 金库操作时间
from hnbi3.lu_frame_user_ds15_201609 lu,hnbi3.jk_log jk
where user_org01_name like '%永州'and lu.user_id = jk.res_account and jk.start_time between '2016-09-01' and '2016-09-30';
1. EXPORT TO ‘E:\jk.del’ OF DEL 结果集;
2. 当别名为数字或者字母时报错的解决办法,加双引号。
3. 替换查询的结果集中的数据;注意这种列的别名是放在end后面
case jk.action
when 'query' then '进入金库报表审批界面'
when 'request' then '申请金库审批'
when 'auth' then '金库审批验证通过'
else '其他'
end 金库操作,
4. 查询某一个月的数据,使用between and