I have table:
NAME FACTOR
say_type1 A
(...)
say_type2 B
(...)
say_type3 A
(...)
say_type3 B
I would like to get as result of an answer (SELECT name, factor FROM... WHERE some_condition):
say_type1 A
say_type2 B
say_type3 A,B
Im trying CASE but it acts always only for one record.