Question: select p.first_name,p.last_name, p.alt_identifier_2, GROUP_CONCAT(c.cval_01) from person p FULL OUTER JOIN dbo.contact_info c ON p.person_id=c.key_value where key_value='744538' GROUP BY p.first_name,p.last_name,p.alt_identifier_2; what is wrong with this query
select p.first_name,p.last_name, p.alt_identifier_2, GROUP_CONCAT(c.cval_01) from person p FULL OUTER JOIN dbo.contact_info c ON p.person_id=c.key_value where key_value='744538' GROUP BY p.first_name,p.last_name,p.alt_identifier_2; what is wrong with this query error message says missing parenthesis?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
