我正在编写一个查询来获取配置单元中不同行的计数。
select count(*)
from (select distinct
uid,
site,
local_date,
mktg_chnnl_name,
mktg_sub_chnnl_name from customer_data)
但我一直有个错误:
parseexception行3:48无法识别子查询源中“eof”“eof”“eof”附近的输入
为什么会这样?
1条答案
按热度按时间ffdz8vbo1#
为子查询提供表别名: