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
lets say a table dogs have column comment and it contains data such as
dogs
comment
and so on
and task is to get unique comments
Generally we use SQL select distinct comment from dogs but most time we are mistaken
select distinct comment from dogs
we dont want to check strictly all spaces, hyphen underscore etc
and want to check simple unique of red dog ness in comment col
red dog
The text was updated successfully, but these errors were encountered:
Solution :
Sorry, something went wrong.
SOHELAHMED7
No branches or pull requests
lets say a table
dogs
have columncomment
and it contains data such asand so on
and task is to get unique comments
Generally we use SQL
select distinct comment from dogs
but most time we are mistakenwe dont want to check strictly all spaces, hyphen underscore etc
and want to check simple unique of
red dog
ness incomment
colThe text was updated successfully, but these errors were encountered: