A Small Step - Car Update
Ford is adding Eco-Boost to a number of vehicles. A combination of a turbo and fuel injection technology that can...
2009-07-17
840 reads
Ford is adding Eco-Boost to a number of vehicles. A combination of a turbo and fuel injection technology that can...
2009-07-17
840 reads
With my hard drive failing in the laptop recently, I scrambled to do something. I was on the road, and...
2009-07-17
2,627 reads
I finished reading Fault Line by Barry Eisler ($16.50 @ Amazon) a few weeks ago. I’ve been a fan for a...
2009-07-17
595 reads
Every so often I run into a fellow DBA or database developer who isn't crystal clear on how file/folder and...
2009-07-16
5,991 reads
I've been tech editing Michael Cole's new book on Encryption in SQL Server, which is due out in August or...
2009-07-16
351 reads
I've been quiet as of late, pretty much ever since i went to Bethany Summer Youth Camp (BSYC) as a...
2009-07-15
744 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-15
425 reads
I am in the process of creating a new blog, but I am having difficulty coming up with a good...
2009-07-15
1,200 reads
Last night I attended, along with about 20 others, the latest and greatest OPASS meeting. I got there early to...
2009-07-15
531 reads
There may be some people wondering why I go by the name @unclebiguns on Twitter. I am basing this on...
2009-07-15
397 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