X
xlf1979
Unregistered / Unconfirmed
GUEST, unregistred user!
d1:=DateTimePicker1.Date;
d2:=DateTimePicker2.Date;
adoQuery2.Close;
adoQuery2.sql.Clear;
adoQuery2.sql.Add('select count(*) as gxj from f1 where id=:id and jb=:jb and rq>=:min and rq<=:max');
adoquery2.Parameters.ParamByName('id').Value:=i;
adoquery2.Parameters.ParamByName('jb').Value:='工休假';
adoquery2.Parameters.ParamByName('min').Value:=d1;
adoquery2.Parameters.ParamByName('max').Value:=d2;
adoQuery2.open;
s3:=adoquery2.FieldByName('gxj').Value;
各位高手,谁来帮我解决下这个难题,我上面那是统计所有的天数,但现在要求星期六和星期天不要统计进去,请帮帮忙,修改下代码?不尽感激
d2:=DateTimePicker2.Date;
adoQuery2.Close;
adoQuery2.sql.Clear;
adoQuery2.sql.Add('select count(*) as gxj from f1 where id=:id and jb=:jb and rq>=:min and rq<=:max');
adoquery2.Parameters.ParamByName('id').Value:=i;
adoquery2.Parameters.ParamByName('jb').Value:='工休假';
adoquery2.Parameters.ParamByName('min').Value:=d1;
adoquery2.Parameters.ParamByName('max').Value:=d2;
adoQuery2.open;
s3:=adoquery2.FieldByName('gxj').Value;
各位高手,谁来帮我解决下这个难题,我上面那是统计所有的天数,但现在要求星期六和星期天不要统计进去,请帮帮忙,修改下代码?不尽感激