本文介绍了SQL子查询问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在名为转移的表中,当 TraType 的值为1时,列 TraType ,那么它是内部转移,如果 TraType = 2然后iT是外部转移。我必须在select语句中显示内部传输文本,或者在基于 TraType 的select语句中显示外部传输文本。查询如下。

提前致谢。



 选择 TraAsset,TraType,TraDate,TraFrom TraToTranCompanyID 
来自转移
其中 TraApprvBy null TraApprvDate null TranStatus = ' Approved'
解决方案

In the table named Transfers has a column TraType when the value of TraType=1 then it is internal Transfer and if TraType=2 then iT is External Transfer. I have to show the Internal Transfer text in select statement or External Transfer text in the select statement based on TraType. The query is as below.
Thanks in advance.

select TraAsset,TraType,TraDate,TraFrom TraToTranCompanyID
from Transfers
where TraApprvBy is not null and TraApprvDate is not null and TranStatus='Approved'
解决方案


这篇关于SQL子查询问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-20 23:37