I have a table Orders:
Order VARCHAR(20)
Developer VARCHAR(50)
I need to SELECT field in the following way:
For example I have this data in my Table:
Order Developer
Order 141 Tim (Apple), Alex (Microsoft), Sara (Amazon), Neylo
Order 171 James (Apple), John (Amazon)
Order 181 Nike (Microsoft)
Need to make SQL query to get this:
Developer Order
Tim, James (Apple) Order 141, Order 171
Alex, Nike (Microsoft) Order 141, Order 181
Sara, John (Amazon) Order 141, Order 171
Neylo Order 141
Is this possible to make? Any idea is welcome