Based on your revised question, this will hopefully give you what you are after:
Create Sample Tables:
CREATE TABLE Table1 (ID INT)
CREATE TABLE Table2 (ID INT, Service NVARCHAR(MAX))
Insert Sample Data:
INSERT INTO Table1 VALUES ('1')
INSERT INTO Table1 VALUES ('2')
INSERT INTO Table1 VALUES ('3')
INSERT INTO Table2 VALUES ('1', 'Cash')
INSERT INTO Table2 VALUES ('1', 'Deposit')
INSERT INTO Table2 VALUES ('2', 'Cash')
INSERT INTO Table2 VALUES ('2', 'Deposit')
INSERT INTO Table2 VALUES ('3', 'Cash')
INSERT INTO Table2 VALUES ('3', 'Deposit')
Two Columns:
SELECT Table1.ID, MAX(CASE Table2.Service WHEN 'Cash' THEN Table2.Service END), MAX(CASE Table2.Service WHEN 'Deposit' THEN Table2.Service END)
FROM Table1 JOIN Table2 ON Table1.ID = Table2.ID
GROUP BY Table1.ID
Concatenated:
SELECT Table1.ID, CONCAT(MAX(CASE Table2.Service WHEN 'Cash' THEN Table2.Service END), '/', MAX(CASE Table2.Service WHEN 'Deposit' THEN Table2.Service END))
FROM Table1 JOIN Table2 ON Table1.ID = Table2.ID
GROUP BY Table1.ID
Please mark this as answer if it answers your question!