Question: For which of the following data types can a COLLATE clause be applied?
A
B
C
D
text
B
int
C
varchar
D
bigint
Note: Not available
USE demodb GO DECLARE @a TABLE (ID int, Value int); DECLARE @b TABLE (ID int, Value int); INSERT @a VALUES (1, 10), (2, 20); INSERT @b VALUES (1, 100),(2, 200); WITH cte AS (SELECT * FROM @a) UPDATE cte SET Value = b.Value FROM cte AS a INNER JOIN @b AS b ON b.ID = a.ID SELECT * FROM @a GOWhat Will be the output of the above code?