Example table structure:
create table issues
(id int, title varchar(50), affectedclients varchar(max))
create table clients
(id int, name varchar(50))
insert into issues (id, title, affectedclients) values (1, 'Error when clicking save', '["1","2"]');
insert into issues (id, title, affectedclients) values (2, '404 error on url', '[3]');
insert into clients (id, name) values (1, 'Tesco');
insert into clients (id, name) values (2, 'Costa');
insert into clients (id, name) values (3, 'Boots');
insert into clients (id, name) values (4, 'Nandos');
I want to run a query so that I can get the data in the following format:
Id Title AffectedClients 1 Error when clicking save Tesco, Costa 2 404 error on url Boots
How can I achieve this please in the most performant way possible?
If this will be very easy with a properly normalized database then please provide an example.