有两张表 tblkpi 和 student_dept.判断tblkpi中sr1字段和ks2字段的值不为空或者大于0时,修改student_dept中的classroom=1where classroom=0 并且tblkpi中的deptid=student_dept的id而且当前系统时间的年份等于tblkpi中的year字段值,月份等于month字段值~~不知道我表达清楚了没 ,急。。
2 回答
holdtom
TA贡献1805条经验 获得超10个赞
update a set classroom=1
from student_dept a join tblkpi b on b.deptid=a.id
where (b.ks1 is not null or b.ks1>0) and (b.ks2 is not null or b.ks2>0)
and a.classroom=0 and b.year=YEAR(GETDATE()) and b.month=MONTH(GETDATE())
-- ms sql
神不在的星期二
TA贡献1963条经验 获得超6个赞
declare @sr1 int ,@ks2 int
select @sr1=sr1 ,@ks2=ks2 from tblkpi nolock where 条件 --如果没有条件的话,需要用到游标
if(@sr1 is null or @ks2 > 0)
修改student_dept中的classroom=1where classroom=0 并且tblkpi中的deptid=student_dept的id 而且当前系统时间的年份等于tblkpi中的year字段值,月份等于month字段值~~
- 2 回答
- 0 关注
- 665 浏览
添加回答
举报
0/150
提交
取消