我有以下对我有用的查询:
select count(*)
from (
select UNIQUE col1, col2, col3
from my_table
where cond1 = 'A'
and cond2 = 'B'
and cond3 = 'C'
)
没有嵌套查询可以写这个吗?
我有以下对我有用的查询:
select count(*)
from (
select UNIQUE col1, col2, col3
from my_table
where cond1 = 'A'
and cond2 = 'B'
and cond3 = 'C'
)
没有嵌套查询可以写这个吗?
不是我推荐它,而是:
嵌套查询对我来说似乎是“正确答案”。