可以这样
如果T2表有A字段,T1、T2表有共同字段B,可以通过T2表A字段为条件查得B字段
再用B字段为条件去更新T1表
update T1 set C = '1' where B in(select B from T2 where A = '1')