本文介绍了如何在SQL Server 2008中连接两列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
何连接SQL Server 2008中的两列。
以下示例
----------- -
ID(int)年(int)
------- ---------
10 2008
20 2009
30 2010
输出应如下所示
ID_Year(输出)
-------
10-2008
20-2009
30-2010
如何在SQL Server 2008中查询。
解决方案
Ho to concatenate two columns in SQL Server 2008.
Example Below
-------------
ID(int) Year(int) ------- --------- 10 2008 20 2009 30 2010
Output should come as below
ID_Year (Output) ------- 10-2008 20-2009 30-2010
How to query in SQL Server 2008.
解决方案
这篇关于如何在SQL Server 2008中连接两列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!