Newbie here.
What I want to do is create a single Multi Series, but I'm not sure how to properly query this. This example pulls two different pieces of data out of our answers table for each customer. I'd like to have them side-by-side in a Multi Series chart, but I have only managed to get them each into their own regular chart. Can this be done? Thanks!
SELECT 'dbr.chart', 'Column3D', 'Years in Role';
select
c.alias as 'Alias',
a.response as 'Years in Role'
from
research.customers c
join
research.answers a on a.customerID = c.ID
where
a.questionID = 5
order by
c.alias;
SELECT 'dbr.chart', 'Column3D', 'Years in IT';
select
c.alias as 'Alias',
a.response as 'Years in IT'
from
research.customers c
join
research.answers a on a.customerID = c.ID
where
a.questionID = 7
order by
c.alias;