本文介绍了如何从多个表中减去两列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从多个表中减去sql中的两个值,例如我们在同一个表中减去两个值.Name = tbl1,字段是a = column1,b = column2

like = sum as column1 -column2

现在我的问题是如何从不同的列中减去两个值

例子我有两个表table1 = tbl1和table2 = tbl2

在tbl1我有列A,b&

在tbl2我有列c



现在我想要像这样的东西= c as tbl1.a-tbl1.b

解决方案

how to subtract two values in sql from the multiple table for example we subtract two values in same table table Name=tbl1 and fields are a=column1 and b=column2
like =sum as column1-column2
Now my question is that how to subtract the two values from different column
example i have two table table1=tbl1 and table2=tbl2
in tbl1 i have column A,b &
in tbl2 i have column c

now i want thing like this= c as tbl1.a-tbl1.b

解决方案


这篇关于如何从多个表中减去两列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 16:26