Erstellen von Tabellen -Split -String -Funktion im SQL Server
SELECT
first_name,
last_name,
value phone
FROM
sales.contacts
CROSS APPLY STRING_SPLIT(phones, ',');
Filthy Frog