本文介绍了SQL视图中的计算列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我当前的视图会产生这种输出...
My current view produces this kind of output...
Product1 Product2
Jet Ski
Water Polo
我是否可以在视图中使用计算列,以便获得此类结果?
Could i use a computed column in a view, in order getting results like these?
Product1 Product2 Computed
Jet Ski Jet Ski
Water Polo Water Polo
推荐答案
确定:
select Product1, Product2, Product1 + ' ' + Product2 as [computed]
from my_table
这篇关于SQL视图中的计算列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!