- description:
Distinction is critical if you want to stand out from the crowd
Snowpark Migration Accelerator: Distinct¶
Description¶
Select all unique rows from the referenced tables. (Databricks SQL Language Reference SELECT (https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-qry-select.html))
DISTINCT removes duplicate rows from your query results. (Snowflake SQL Language Reference SELECT)
Syntax¶
Sample Source Patterns¶
Setup data¶
Databricks¶
Snowflake¶
Pattern code¶
Databricks¶
| c |
|---|
| 3 |
| 1 |
| 2 |
| 4 |
Snowflake¶
| c |
|---|
| 3 |
| 1 |
| 2 |
| 4 |
Known Issues¶
No issues were found
Related EWIs¶
No related EWIs