小弟不懂VFP,但是现在领导要用
那位大虾帮帮忙,把下面的SQL语句给改写一下,使其能在VFP下正常运行
这里先谢谢了
--所有的记录插入临时表tmp_log_sucSds0216
create table tmp_log_sucSds0216 as select nsrsbh,sblsh from gx_log_suc where sssq_z=to_date('2005-12-31','yyyy-mm-dd')
and sssq_q=to_date('2005-10-01','yyyy-mm-dd')
select count(*) from tmp_log_sucSds0216 where nsrsbh in(select nsrsbh from gx_log_suc where zsxm_dm in('01','03'))
--删除增值税跟所得税都申报的的记录,剩下的是只申报所得税的申报记录
delete from tmp_log_sucSds0216 where nsrsbh in(select nsrsbh from gx_log_suc where zsxm_dm in('01','03'))
--统计各代理申报的所得税户数
select count(*),a.dlbh,b.changfile from gx_log_suc a left join (select distinct(dlmc) as dlmc,changfile from gx_dlkz) b on a.dlbh=b.dlmc
where a.sblsh in(select sblsh from tmp_log_sucSds0216) and a.dlbh like '%370%'
group by a.dlbh,b.changfile
--2411
[此贴子已经被作者于2006-2-17 11:15:05编辑过]