Hi makenzi.exc,
Use COALESCE function.
Database
For this example I have used of Northwind database that you can download using the link given below.
Download Northwind Database
Refer below query.
SQL
DECLARE @Names VARCHAR(MAX)
SELECT @Names = COALESCE(@Names + ', ', '') + [FirstName]
FROM Employees
SELECT @Names