Azure 数据工厂数据流计数不同
Azure data factory Dataflow Count distinct
我有一个具有多个源和连接的数据流,我想根据来自流线的 column1 与另一个源的不同计数创建一个新列,例如比较 customers_tables 中的 customerId 与 customers_tables 中的 customerId发票 table。在 SQL 我是这样做的:
(select count(DISTINCT customerID) from invoice) AS CustomersWithNoSales,
有没有办法在数据流中使用聚合转换来进行比较?
谢谢。
必须添加其他来源,然后加入其他流。之后,我能够在每个源的两个字段之间使用函数 countDistinct 进行聚合转换。
我有一个具有多个源和连接的数据流,我想根据来自流线的 column1 与另一个源的不同计数创建一个新列,例如比较 customers_tables 中的 customerId 与 customers_tables 中的 customerId发票 table。在 SQL 我是这样做的:
(select count(DISTINCT customerID) from invoice) AS CustomersWithNoSales,
有没有办法在数据流中使用聚合转换来进行比较?
谢谢。
必须添加其他来源,然后加入其他流。之后,我能够在每个源的两个字段之间使用函数 countDistinct 进行聚合转换。