我有两个名为test1的表,test2。我已将值插入两个表中。问题是,我想将两个值相乘。任何人都可以帮助我吗?
table test1
id | cola | colb
1 | 0,5 | 5
2 | 0,6 | 6
table test1
id | colc | cold
1 | 0,7 | 7
2 | 0,8 | 8
SELECT cola,colb,colc,cold,(cola*t2.colc)AS er FROM test1 t1, test2 t2
答案 0 :(得分:0)
尝试使用如下查询:
SELECT t1.cola,t1.colb,t2.colc,t2.cold,(t1.colb*t2.cold)AS er FROM test1 t1, test2 t2