我真的不明白,尝试使用 coalesce() 但没有结果......
我有一个选择(非常简化以理解问题):
select col1,
col2
from table1 t1
where table1.col1='value'
and table1.col2='value2'
and table1.col3='value3'
我真的需要一个结果,所以如果这个选择结果集是空的(并且只有当它是空的)(没有结果)那么下面的 sql 选择就出现了
select col1,
col2
from table1 t1
where table1.col1='another_value'
and table1.col2='another_value2'
我怎样才能让这两个成为一个大选择?(任何推荐的语法都值得赞赏......)