Operation Hands Free
Recently I was driving home and as I made that turn into the sub-division where I live, over the course...
2008-07-30
1,355 reads
Recently I was driving home and as I made that turn into the sub-division where I live, over the course...
2008-07-30
1,355 reads
As a follow-up to yesterday's post, Part III of the SQL Server panel interview has been posted on-line. A name I...
2008-07-30
1,721 reads
Quite the debate going on from today's editorial: Stored Procedures Reconsidered. I chimed in late, and going on the "pro-sprocs"...
2008-07-30
1,548 reads
Rebuilding Stats was published yesterday on SSC, some nice comments posted to it as well. The main point of the...
2008-07-29
1,471 reads
I was asked by Odin Jobs to participate in an email interview on SQL Server. Joining me on the panel...
2008-07-29
2,010 reads
Not all of us work at companies big enough to justify the expense/time it takes to implement something like MS...
2008-07-29
1,439 reads
I saw this post from Rick Strahl about IP6 Addresses in Vista breaking some code, and it immediately made sense...
2008-07-28
1,442 reads
I just leaned today that Glenn Berry has had his MVP award renewedfor another year. If you have not read...
2008-07-27
1,324 reads
It's downright common these days to download programs as ISO images, but XP doesn't have a native viewer for them....
2008-07-27
1,696 reads
At least this project is moving forward. We deployed a new design to the site this week, and turned it...
2008-07-26
1,434 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...
Comments posted to this topic are about the item Using OPENJSON
Comments posted to this topic are about the item Data Modeling with dbt for...
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