in mysql, if i have a query that returns something like
b-2; c-4, e-9
is there a way i could unite it with
a-0; b-0; c-0; d-0; e-0; f-0;
to get a final result
a0; b-2; c-4; d-0; e-9, f-0?
i understand that the better way to approach it is to rewrite the original query, but it is somewhat complex for my level (complete sql noob), and I'm rather pressed with time. thank you