I have two tables with the name Districtsand Schools. The table Districtscontains a column with a name Schools.
I need to populate the Schoolstable column Districtsfrom the corresponding table Schools, so that each row in the table Districtshas a comma separated list of school name values from Schools.
How can i do this? Should I use a query UPDATEor stored procedure?
I only got:
SQL Fiddle
Districts Table
+------------+------+---------+
| DistrictId | Name | Schools |
+------------+------+---------+
| 1 | a | |
| 2 | b | |
| 3 | c | |
| 4 | d | |
+------------+------+---------+
Schools Table
+----------+------------+------------+
| SchoolId | SchoolName | DistrictId |
+----------+------------+------------+
| 1 | s1 | 1 |
| 2 | s2 | 1 |
| 3 | s3 | 2 |
| 4 | s4 | 2 |
| 5 | s5 | 4 |
+----------+------------+------------+
How is the result needed
+------------+------+---------+
| DistrictId | Name | Schools |
+------------+------+---------+
| 1 | a | s1,s2 |
| 2 | b | s3,s4 |
| 3 | c | |
| 4 | d | s5 |
+------------+------+---------+
source
share