PASS Summit 2012-Wednesday Keynote Part 2
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
I like reading and while I read more on an e-reader than I used to, I still prefer the printed...
2012-11-05
839 reads
I started this trip with a 4:30 am wake up on Sunday to be at the airport for the direct...
2012-11-05
834 reads
If you’re in Seattle for the PASS Summit and would like a chance to meet some new people in a...
2012-11-05
827 reads
I tend to take it for granted and I imagine most of you do as well, but not everyone is...
2012-11-01
813 reads
I’ve been living with my Mac Air for a few weeks now, thought I’d share some quick thoughts:
I miss the...
2012-10-24
811 reads
Congratulations to Wendy Pastrick, James Rowland-Jones, and Sri Sridharan on winning a two year term on the PASS Board of...
2012-10-17
805 reads
We just crossed the 100 mark for registrants for our Monday Night Networking Party and still room for more. If...
2012-10-12 (first published: 2012-10-09)
1,813 reads
My friend Richard Salogub is heading up this years Give Camp Orlando, an effort to link developers and IT professionals...
2012-10-08
771 reads
I was just answering an email and realized I’m behind on posting on a few topics, one of them the...
2012-10-08
928 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