Planning a SQL 2008 Launch Event
As a user group leader I see new products as a chance to make sure our members know about the...
2007-12-25
1,483 reads
As a user group leader I see new products as a chance to make sure our members know about the...
2007-12-25
1,483 reads
My new laptop came with Vista Home and I messed with it for awhile last night, but I didn't see...
2007-12-24
1,459 reads
My new laptop showed up today at my desk. Actually it probably showed up yesterday, but since I never went...
2007-12-23
1,536 reads
I finally sat for 70-431 on Thursday. I know, I am at least a year behind everyone else. There is...
2007-12-22
1,361 reads
Someone posted a question about what should they try to learn for an interview coming soon, but the company was...
2007-12-20
1,536 reads
I've put this off for a while, but I needed a break from the routine and I'm starting to get...
2007-12-20
1,384 reads
We had our final meeting of the year last night, minutes posted here. Pretty good turn out, 22 total. And...
2007-12-19
1,437 reads
Usually I'm the one working on my podcasts and starring in them. However I got invited to participate in and...
2007-12-18
1,434 reads
I'm a fan of lists so that I stay on track rather than trying to remember all things at the...
2007-12-18
1,413 reads
As an owner of a small business one of the constant struggles is time management, and more importantly, finding time...
2007-12-17
1,487 reads
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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