Yes, it’s possible – using a table valued constructor:
SELECT *
FROM (VALUES ('T1'), ('T2'), ('T4'), ('T3')) AS [Keys]([Key])
LEFT JOIN [TAble] As T
ON [Key] = [Keys].[Key]
CLICK HERE to find out more related problems solutions.
Yes, it’s possible – using a table valued constructor:
SELECT *
FROM (VALUES ('T1'), ('T2'), ('T4'), ('T3')) AS [Keys]([Key])
LEFT JOIN [TAble] As T
ON [Key] = [Keys].[Key]
CLICK HERE to find out more related problems solutions.