What will be the result of the following T-SQL?

DECLARE @t TABLE (CustomerId int, FirstName varchar(50), LastName varchar(50))

SELECT TOP(100) CustomerId, FirstName, LastName INTO @t
FROM Customer WHERE Country Like 'U%'
 

Experience Level: Not defined
Tags: Code challengeDatabasesMS SQL ServerSQL

Answer

Comments

No Comments Yet.
Be the first to tell us what you think.