New Year Aspirations – Gina Walters – User Groups
Thanks for agreeing to do this Gina; from your emails things do sound quite frantic at the moment so I...
2013-02-12
868 reads
Thanks for agreeing to do this Gina; from your emails things do sound quite frantic at the moment so I...
2013-02-12
868 reads
Do you use the FLOAT datatype? If so you had better read this……
Today I came across an issue somebody posted...
2013-02-01
5,134 reads
As a former mentor Christian is used to me asking him all sorts of random questions, but this time it’s...
2013-01-29
1,535 reads
Thanks for agreeing to do this Annette, with your SQL Saturday event only a few weeks away thing must be...
2013-01-28
937 reads
I’ve been very privileged to be able to work alongside Kevin on a few projects during our time together at...
2013-01-25
886 reads
Thanks for agreeing to do this Jonathan, I know you’re busy with arrangements for SQL Saturday #194 in Exeter
Before we...
2013-01-24
1,077 reads
It’s an exciting time for SQL Server Professionals in the South West of the UK, we’re now just a few...
2013-01-24
733 reads
Thanks for agreeing to do this Gavin. It’s great to be able to interview an MCA as there are so...
2013-01-23
947 reads
Thanks for agreeing to do this boB. It’s great to be able to interview the Microsoft program manager for the...
2013-01-22
1,894 reads
Most readers will know you already, but before we start on the main part of the interview, tell us all...
2013-01-21
1,018 reads
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
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...
This week my BI Developer colleague proudly showed me a new Power BI report...
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