我正在查询数据库,我有2位列需要合并(对于本示例,如果其中一个为true,则该列必须为true)。
类似于:Select col1 || col2 from myTable
最简单的方法是什么?
最佳答案
select col1 | col2 from myTable
http://msdn.microsoft.com/en-us/library/ms176122.aspx
关于sql - 如何合并2位列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/819589/