SqL 中不同的日期数量

问题描述 投票:0回答:1

我有一个包含以下列的表格:

Date, name, cost, address

我想创建一个附加列,它将在“日期”列中提供不同的日期计数。

我尝试过:

Count(Distinct date) as count_d_dates

但是,它不起作用,我得到了错误的数字。

sql mysql postgresql amazon-web-services amazon-redshift
1个回答
0
投票

您需要使用子查询。例如:

SELECT COUNT("distinctDates") FROM (SELECT DISTINCT "YourDates" FROM "YourTable" ) AS distinctDates
© www.soinside.com 2019 - 2024. All rights reserved.