请上传宽度大于 1200px,高度大于 164px 的封面图片
    调整图片尺寸与位置
    滚轮可以放大缩小图片尺寸,按住图片拖动可调整位置,多余的会自动被裁剪掉
取消
nxwzqy1(uid:182921)
职业资格认证:尚未取得认证
  • 如何根据G6单元格里的数值得出成绩,比如:1.40-1.44得60分,1.45-1.50得65分…………
  • 如何先按照档案类型、在按照A级目录(A1\A2\A3……)排序
  • 使用了now(),时间格式有问题,怎么解决?
  • 使用了下面的SQL查询,提示 查询列名 '学籍号' 不明确select学籍号,学校,姓名,届数,班级, count(1) 总数量,sum(case when 评价类型='表扬' then 1 else 0 end) as 表扬数,sum(case when 评价类型='批评' then 1 else 0 end) as 批评数from 七彩星光发章填报 aleft join 学生基础信息表 b on a.学籍号=b.学籍号left join 七彩星光评价徽章 c on a.徽章=c.徽章名称group by学籍号,学校,姓名,届数,班级order by 总数量 desc
  • 如何设置当E4、F4和G4单元格数据为同时0时,不显示该行
  • 使用下面的查询,计算出的迟到和缺卡不准确,不知道什么原因??select姓名,sum(case when 早上状况='正常' or 中午状况='正常' or 下午状况='正常' then 1 else 0 end) as 正常,sum(case when 早上状况='缺卡' or 下午状况='缺卡' then 1 else 0 end) as 缺卡,sum(case when 早上状况='迟到' or 中午状况='迟到' or 下午状况='迟到' then 1 else 0 end) as 迟到,sum(case when 早上状况='早退' or 中午状况='早退' or 下午状况='早退' then 1 else 0 end) as 早退from 每日考勤状况表where 日期>='${dateEditor0}' and 日期 <='${dateEditor1}' ${if(len(xm)==0,"","and 姓名 like '%"+xm+"%'")}${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}group by 姓名
  • 下面使用了超级链接,如何使链接的报表打开后,呈现出“红星”的选项
  • 通过定时调度,实现每天提交当天的,
  • 这里根据“起始时间”查询请假统计(事假病假等),查询的结果不准确,是不是因为时间的格式,应该怎么改?select 请假人,单位,count(*) as 请假次数,sum(请假天数) as 请假天数 ,(select count(*) from 请假申请 a where 请假人=请假申请.请假人 and 审核结果='通过' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 通过次数,(select count(*) from 请假申请 a where 请假人=请假申请.请假人 and 审核结果='驳回' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}' ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")} ) as 驳回次数,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='事假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 事假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='病假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 病假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='婚假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 婚假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='产假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")} ) as 产假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='丧假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")} ) as 丧假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='会假' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 会假,(select sum(请假天数) from 请假申请 a where 请假人=请假申请.请假人 and 请假类型='其他' and 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}) as 其他from 请假申请 where 起始时间>='${dateEditor0}' and 起始时间 <='${dateEditor1}'  ${if(len(单位_c)=="",""," and 单位 like '%"+单位_c+"%'")}group by 请假人,单位 

50

2

50

10

12345下一页
个人成就
内容被浏览15,883
加入社区5年192天
返回顶部