Ideas for SQLServerCentral.com
We're embarking upon a rebuild of the site and we're looking for input from those of you that use the site.
2008-02-26 (first published: 2007-02-26)
1,732 reads
We're embarking upon a rebuild of the site and we're looking for input from those of you that use the site.
2008-02-26 (first published: 2007-02-26)
1,732 reads
The launch event is tomorrow in LA and I'm not going, and find myself a little disappointed. There will be...
2008-02-26
1,392 reads
SQL Server 2008 launches today and there's are additional events all across the country coming up.
2008-02-26
32 reads
SQL Server 2008 launches today and there's are additional events all across the country coming up.
2008-02-26
38 reads
SQL Server 2008 launches today and there's are additional events all across the country coming up.
2008-02-26
29 reads
2008-02-25
29 reads
Do you know how to suggest improvements or features for SQL Server? Or report bugs? You use Connect, but it needs some work before it will really help the product.
2008-02-25
73 reads
2008-02-25
38 reads
2008-02-25
35 reads
2008-02-25
41 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...
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