示例输入数据:
city state country
boston MA US
chennai TN India
boston MA US
输出我需要在数据仓库中加载:
city state country
boston MA US
chennai TN India
我不想在talend中使用tunite或tuniquerow组件。
答案 0 :(得分:0)
如果您使用自定义SELECT
语句从MySQL加载,则可以使用DISTINCT
关键字仅获取每个行组合的一个实例。
E.g:
SELECT DISTINCT city, state, country FROM mytable