我有3个名为t1
t2
和t3
的表,其结构如下:
表:t1
id_rand con1 con2 con3
abc . 0 . 1 . 1
def . 1 . 0 . 0
ghi . 1 . 1 . 1
jkl . 0 . 0 . 0
mno . 1 . 1 . 1
表:t2
id_rand con1 con2 con3
abc . 1 . 1 . 1
def . 1 . 0 . 0
ghi . 1 . 1 . 1
jkl . 0 . 0 . 0
mno . 1 . 1 . 1
表:t3
id_rand con1 con2 con3
abc . 1 . 1 . 1
def . 1 . 1 . 1
ghi . 1 . 0 . 1
jkl . 0 . 0 . 0
mno . 1 . 1 . 1
表:user_stats
id . Count
t1 . 2
t2 . 3
t3 . 3
这是我想做的事,
我正在尝试创建一个过程,只要在user_stats
,t1
或t2
中的任何一个中插入新值,就会更新表t3
中Count的值字段con1
,con2
和con3
为1
,1
,1
。
P.S我正在使用mysql数据库。