This is based on a question that was answered here.
I need to export relational records to a flat CSV file. It displays a list of employees that match two skills. The export needs to have a separate line for each skill. For example:
EMPID NAME SKILLNAME LEVEL 1 Fred Flintstone PHP Basic 1 Fred Flintstone JQuery Advanced 3 Steve Jobs PHP Basic 3 Steve Jobs JQuery Advanced
Here's the tables/records and a modified version of the previous answer: SQL Fiddle
I have tried a few variations but no luck.
Thanks