当满足另一个表的一组条件时自动更新表

时间:2018-03-15 17:03:59

标签: mysql php-mysqlidb

我有3个名为t1 t2t3的表,其结构如下:

  

表: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_statst1t2中的任何一个中插入新值,就会更新表t3中Count的值字段con1con2con3111

P.S我正在使用mysql数据库。

0 个答案:

没有答案