Yes it is possible. You can create a function first to achieve it. Here is the function you can use :
CREATE FUNCTION [dbo].[fnSplitString]
(
@string NVARCHAR(MAX),
@delimiter CHAR(1)
)
RETURNS @output TABLE(splitdata NVARCHAR(MAX)
)
BEGIN
DECLARE @start INT, @end INT, @temp varchar(max)
set @temp = ''
SELECT @start = 1, @end = CHARINDEX(@delimiter, @string)
WHILE @start < LEN(@string) + 1 BEGIN
IF @end = 0
SET @end = LEN(@string) + 1
SET @temp = @temp + CHAR(13)+CHAR(10) + SUBSTRING(@string, @start, @end - @start)
SET @start = @end + 1
SET @end = CHARINDEX(@delimiter, @string, @start)
END
INSERT INTO @output (splitdata)
VALUES(@temp)
RETURN
END
And then you can make the query like below :
select *from dbo.fnSplitString('Test1,Test2,Test3,Test4',',')