Kindle Update – Version 3?
I haven’t written about the Kindle lately, but I have noticed some news and I found it interesting.
First I saw...
2009-05-06
518 reads
I haven’t written about the Kindle lately, but I have noticed some news and I found it interesting.
First I saw...
2009-05-06
518 reads
Yep, yesterday in Prishtina, capital city of Kosova was held the event named, Oracle Day in Kosova! It was very...
2009-05-06
522 reads
A few weeks back I wrote about trying out the LinkedIn Add-in and time has reinforced for me that it's...
2009-05-06
486 reads
It was time.
I decided the other day that I needed to shave, and so the goatee came off. It's been...
2009-05-05
458 reads
This is spurred on by a comment a pen tester made. He was referring to a particular technology and said...
2009-05-05
1,248 reads
When I plugged in my USB->Serial adapter for the weather station, it popped up the “New Hardware” dialog. My machine...
2009-05-05
393 reads
As I've mentioned in earlier posts (Part 1, Part 2, Part 3) I've engaged speaking and networking Don Gabor to...
2009-05-05
408 reads
Shortly after the Zune debuted, I purchased one. And I've been happy with it. It's done everything I expected out...
2009-05-04
860 reads
I've been tech editing a book about SQL Server encryption and this series of blog posts looks at some interesting...
2009-05-04
9,454 reads
My friend Grant Fritchey recently posted in response to a quiz and at the end of that mentioned that he'd...
2009-05-04
577 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