Thursday Reading 2017-04-13
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
153 reads
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
153 reads
So SQLBits is over and I have to say that I really enjoyed attending on the Saturday, hopefully next year...
2017-04-10
289 reads
So SQLBits is over and I have to say that I really enjoyed attending on the Saturday, hopefully next year...
2017-04-10
175 reads
As this is being published I’m on my way up to Dublin airport to head on over to the UK...
2017-04-07
343 reads
As this is being published I’m on my way up to Dublin airport to head on over to the UK...
2017-04-07
146 reads
One of the questions that I was asked at SQL Saturday Iceland was “how can I view the filesystem within...
2017-04-05
466 reads
One of the questions that I was asked at SQL Saturday Iceland was “how can I view the filesystem within...
2017-04-05
172 reads
Last week Pass announced changes to how speakers are going to be selected for their annual conference (you can read...
2017-04-03
270 reads
Last week Pass announced changes to how speakers are going to be selected for their annual conference (you can read...
2017-04-03
137 reads
SQLBits is only a week away! But before that I’ve been reading…
Backing up SQL Server on Linux using Ola Hallengrens...
2017-03-31
562 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
Ruko Cilegon City Square, Jl. Pondok Cilegon Indah No.1 Blok A No. 1-3 &...
Jl. Raya Merak No.42, Ramanuju, Kec. Purwakarta, Kota Cilegon, DKI Jakarta 42411
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
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