phpmyadminでmysqlを使用していることから始めます。
私のテーブル:
表1:
primary key = id1;
cash1 = thing I want to pick from that table;
表 2:
primary key = id2;
cash2 = thing I want to pick from that table;
表 3:
foreign key1 = id1;
foreign key2 = id2;
cash3 = thing I want to make;
だから、私は作りたい:
Update (or insert into?) cash3 = cash1*cash2/100 when UPDATE ON cash1 or cash2.
多くのことを試してみましたが、何もうまくいかないようです...