Tagxedo
I found this while looking for a quick way to throw some words into a slide, was thinking something along...
2010-09-07
599 reads
I found this while looking for a quick way to throw some words into a slide, was thinking something along...
2010-09-07
599 reads
I’ll be doing a presentation titled Introduction to Statistics in SQL Server today (Sep 7, 2010) at noon for the...
2010-09-07
225 reads
Another choice brought about by wandering the local library, Rehnquist: A Personal Portrait of the Distinguished Chief Justice of the...
2010-09-07
591 reads
When I arrived at the Hutton Hotel in Nashville for the PASS Board meeting recently they couldn’t find my reservation....
2010-09-03
527 reads
Voting began yesterday with ballots mailed to qualified members. More information can be found here, including contact info for Hannes...
2010-09-02
258 reads
I’m borrowing the title for this post from the pre-conference seminarDon Gabor is doing at this PASS Summit this year....
2010-09-02
371 reads
Overall it was a great event, attendance in the 350-400 range. Boxed lunches instead of pizza (good!), not much in...
2010-09-01
325 reads
Hopefully you’ve heard by now that PASS is launching a new event format called SQLRally in May 2011 in Orlando....
2010-08-31
1,894 reads
Prior to creating SQLRally the world of PASS consisted of the PASS Summit which is our annual mega-event, the European...
2010-08-31
1,831 reads
I’ll be doing an introductory level presentation on statistics for the Performance VC on September 7th, details and the LiveMeeting...
2010-08-30
1,675 reads
By Tim Radney
Over the past few weeks, I’ve been contacted by multiple customers experiencing the same...
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
I’m doing a small series on indexing basics for SQL Server, and on May...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers