select
(SELECT count(ts.student_id) AS studentcount
from tb_student ts
where ts.tudent_id>101 )as count1,
(SELECT count(tt.teacher_id) AS Totalteacher from tb_teacher tt
where feedback_id<>0) as count2
这给了我一些结果
count1 count2
4 9
在某些情况下,计数将相等,例如
count1 count2
9 9
我需要使用此结果更新另一个表,例如何时count1=count2
更新一个名为tb_log
并设置 的表falg=1
除了通过过程进行之外,它是否可以在此查询中完成。