Question: Which of the following options is NOT supported by the ON DELETE clause of a FOREIGN KEY constraint of SQL Server 2008?
A
B
C
D
CASCADE
B
DELETE
C
SET NULL
D
SET DEFAULT
Note: Not available
USE Person GO DECLARE @p AS int SELECT @p=10 SELECT TOP(@p) FROM Employee GOWhat Will be the output of the above code?