What would be the output of the below?
declare @table table (id int, [name] varchar(10))
insert into @table values (1,'John')
insert into @table values (2,'Jonathan')
insert into @table values (3,'Jon')
insert into @table values (4,'Joe')
insert...
Read more...