I looked up several answers that didn't seem to quite work for me, or I used them incorrectly with my query.
Current query:
SELECT
    PartNo,
    SubPartNo
FROM
    Materials
Current Results:
+--------+-----------+
| PartNo | SubPartNo |
+--------+-----------+
|    541 |      5451 |
|    545 |      5451 |
+--------+-----------+
Desired Results:
+----------+-----------+
|  PartNo  | SubPartNo |
+----------+-----------+
| 541, 545 |      5451 |
+----------+-----------+
The result doesn't necessarily need the comma. I am sure this is an easy fix but my limited know-how is slowing me down.
