Answer the question
In order to leave comments, you need to log in
How to display fields with the same values?
There is a workers table with fields name, salary. How to display names with the same salary values?
Answer the question
In order to leave comments, you need to log in
For example like this:
select STRING_AGG(Name, ',') as Names, Salary from Workers group by Salary;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question