Your Boss Wants You To Be Better at X
Imagine that you use a piece of software as part of your work, but it’s not what you consider the...
2012-09-19
704 reads
Imagine that you use a piece of software as part of your work, but it’s not what you consider the...
2012-09-19
704 reads
My current client has a five story building, two break rooms and two sets of bathroom per floor, with I’m...
2012-09-17
625 reads
Most managers and employers distinguish between attending a conference and training. We (the royal SQL community we) offer quite a...
2012-09-14
1,116 reads
Order status on the web site still shows an estimated ship date of the 4th (of September) for my X1...
2012-09-14
812 reads
Since earlier this year I’ve been thinking to replace my aging but still useful laptop, mostly to get something lighter,...
2012-09-13 (first published: 2012-09-08)
1,878 reads
Sharing some stuff I’ve read recently that I found interesting – and that you may find interesting!
Help More, Judge Less. I’ll...
2012-09-12
663 reads
Last year I wrote about stuff I carry in my laptop bag. Nothing original, definitely a tendency to carry things...
2012-09-12
1,217 reads
Recently I needed to help a colleague with a small inventory true up task. We needed to know items that...
2012-09-10
794 reads
A recent article in the PASS Connector called out some interesting stats about SQLSaturday for 2011 and 2012. I’m including...
2012-09-09
701 reads
Back to the list, what should go in this minimalist creation? Here’s what I have so far:
laptop (yes)
charger (yes – buy...
2012-08-31
1,517 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