Write The Perfect Question (Of The Day)
Have you ever voted against something only to be glad later you got out voted? Too many years ago the...
2014-03-05 (first published: 2014-02-25)
1,491 reads
Have you ever voted against something only to be glad later you got out voted? Too many years ago the...
2014-03-05 (first published: 2014-02-25)
1,491 reads
I use Pocket for saving some stuff. It works well from Feedly when I see something I know I’ll want...
2014-03-03
704 reads
The role of PASS in the community has evolved a lot over the past few years. Back in 2006/2007 PASS...
2014-02-28
1,298 reads
The first sign of spring in Florida is the leaves falling from the oak trees. Tons of leaves, leaves everywhere,...
2014-02-27
1,048 reads
Here’s a list of free presentation software I ran across, maybe worth a few minutes to get out of the...
2014-02-24
733 reads
Speaker dinner at Spaghetti Warehouse was packed. Great crowd, not such great service. At 8:45 pm we still had not...
2014-02-24
674 reads
Live notes from the meeting.
Attendance is low tonight, about 10 people (though it was well advertised, I got quite a...
2014-02-21
699 reads
I’m looking forward to the trip to Tampa for SQLSaturday #273 this weekend. I’m driving down this afternoon to beat...
2014-02-21
647 reads
It’s good to remember that the ideas and challenges of mastering a craft – any craft – have been around a while....
2014-02-20
652 reads
2014-02-20
1,932 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
Comments posted to this topic are about the item The day-to-day pressures of a...
Hello all, I’m looking for advice on how to derive a daily snapshot table...
We need to replace our Windows server running SQL 2017. Any reason not to...
I have some data in a table that looks like this:
BeerID BeerName brewer beerdescription 1 Becks Interbrew Beck's is a German-style pilsner beer 2 Fat Tire New Belgium Toasty malt, gentle sweetness, flash of fresh hop bitterness. 3 Mac n Jacks Mac & Jack's Brewery This beer erupts with a floral, hoppy taste 4 Alaskan Amber Alaskan Brewing Alaskan Brewing Amber Ale is an "alt" style beer 8 Kirin Kirin Brewing Kirin Ichiban is a Lager-type beerIf I run this, what is returned?
select t1.[key]
from openjson((select t.* FROM Beer AS t for json path)) t1 See possible answers