SQL Server 2005 SP2 CTP Available for Download
The Community Technology Preview (CTP) version SQL Server 2005 SP2 has been released by Microsoft. You can find the download...
2006-11-08
1,975 reads
The Community Technology Preview (CTP) version SQL Server 2005 SP2 has been released by Microsoft. You can find the download...
2006-11-08
1,975 reads
Recently I started getting back into the game of chess as I began coaching my boys. Chess is a great...
2006-11-02
1,687 reads
It has been a trying month to month and a half with the implementation of Microsoft's CRM 3.0 product. By...
2006-10-30
1,374 reads
My daughter-in-law just reminded me on Sunday that her birthday was in 21 days. Yikes! That's the day I fly...
2006-10-26
1,314 reads
I've been busy working on the magazine among other things and am struggling a bit. I had quite a few...
2006-10-18
1,512 reads
For your listening enjoyment, I have compiled a list off essential audio for .NET developers and SQL DBAs. This list...
2006-10-06
1,381 reads
For some reason, today I came across at least a half-dozen blog posts and articles about how to avoid SQL...
2006-10-03
1,427 reads
I've been rather quiet for a while and there's a reason. I've been
helping some friends get a general gaming site...
2006-09-22
1,505 reads
If you are new to SQL Server, you might be interested in viewing a video that covers the terms you use...
2006-09-11
1,585 reads
I ordered some new drives for our Dell server from "This Old Store" recently and they came on Tuesday of...
2006-09-08
1,688 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...
Kamagra Oral Jelly 100 mg is a medication used to treat erectile dysfunction (ED)....
Comments posted to this topic are about the item Using OPENJSON
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