PASS SQLRally – Session/Speaker Selection
Hopefully by now you’ve heard about the PASS SQLRally event that will be held in Orlando, May 11-13. Andy Warren,...
2010-09-09
526 reads
Hopefully by now you’ve heard about the PASS SQLRally event that will be held in Orlando, May 11-13. Andy Warren,...
2010-09-09
526 reads
I haven’t been speaking a lot lately as I’ve been busy working, planning SQLSaturday #49 – Orlando, and planning PASS SQLRally,...
2010-09-07
480 reads
About a month ago I went to Barnes & Noble to pick up a copy of Seth Godin’s book, Tribes: We...
2010-09-01
579 reads
As the debate rages on about the PASS election I want to share my thoughts about being a candidate that...
2010-08-23
442 reads
So the slate has been announced, so now I feel like I can talk about not making the cut. Based...
2010-08-18
523 reads
If you read this blog I’m sure you read Steve Jones’ blog as well, so you know that the PASS...
2010-08-18
413 reads
In Growing PASS Step One: Communication I talked about how I think that PASS could grow by communicating the vision...
2010-08-17
394 reads
As my regular readers know I applied to be part of the PASS Board of Directors. The process starts with...
2010-08-12
474 reads
August 10, 6:00pm - 8:30pm
Come on out and join us as our own Tim McAliley presents. For directions visit the OPASS...
2010-08-10
327 reads
Planning is going forward for SQLSaturday #49 – Orlando and the event is coming together well. My main task is sponsors...
2010-08-05
356 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