We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DISTINCT
In SQL, we can use DISTINCT to deduplicate the result set of a query, and produce a multi-set.
SELECT DISTINCT a, b FROM t; -- The output won't contain duplicated (a, b)
This is essentially equivalent with GROUP BY a, b.
GROUP BY a, b
The text was updated successfully, but these errors were encountered:
/assignme
Sorry, something went wrong.
ygf11
Successfully merging a pull request may close this issue.
In SQL, we can use
DISTINCT
to deduplicate the result set of a query, and produce a multi-set.This is essentially equivalent with
GROUP BY a, b
.The text was updated successfully, but these errors were encountered: