2020-09-22
908 reads
2020-09-22
908 reads
An in depth look at the implications of using Banker's Rounding.
2020-06-15
18,661 reads
Age Calculation gets implemented as an Inline table Valued function with a parameter defining which date parts must be counted.
2017-03-30
1,851 reads
Age calculation based on the right method used in real life.
2017-03-28
4,335 reads
2017-03-09 (first published: 2017-02-16)
1,990 reads
2016-11-16
1,263 reads
2013-06-24
2,884 reads
2013-05-24
2,364 reads
2013-04-30
2,261 reads
2008-09-04
5,245 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers