Airlines Don't Care About Customers? Nor Does The Government!
I saw this post about a recent panel that tried to come up with guidelines for airlines as far as...
2008-11-25
1,387 reads
I saw this post about a recent panel that tried to come up with guidelines for airlines as far as...
2008-11-25
1,387 reads
My goal of 400 posts a month has been in jeopardy with all the traveling I've been doing over the...
2008-11-25
1,479 reads
Saw a post from Michael Miller that PC Magazine will end it's print version with the January issue. Have to...
2008-11-25
1,539 reads
One of those old sayings that has a grain or two of truth to it. Stocks, real estate, education even,...
2008-11-25
1,561 reads
I heard during last week that the 2009 PASS Community Summit will be back in Seattle, on Nov 3-6 next...
2008-11-25
1,566 reads
It's fun to read good work, and my friend Kendal Van Dyke recently posted How CommitBatchSize And CommitBatchThreshold Affect Replication....
2008-11-24
1,412 reads
After 2 years working on a data conversion and software implementation project, I’ve finally started to get caught up on...
2008-11-24
1,664 reads
I definitely need to write up a few summaries about last week, but right now I'm a bit buried with...
2008-11-24
1,585 reads
So now that PASS is over and life is getting back to normal I thought it would share my final...
2008-11-24
1,591 reads
Turning up the heat. Take it up a notch. Stepping up to the plate. Less talk, more action.
However you choose...
2008-11-24
1,637 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