PASS Connector Editorial for April 8, 2009
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-13
290 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-13
290 reads
Time has flown by since my last update, busy time at work and struggling to get that done and find...
2009-04-13
391 reads
I've been writing a lot about networking lately and my efforts to learn/leverage LinkedIn, and along the way taken a...
2009-04-13
825 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-12
304 reads
Back in December 2008 I wrote up a quick review of Red Thunder, and then received Red Lightning as a...
2009-04-09
284 reads
Please consider this a not quite official announcement, look for that on the sqlpass.org site today or tomorrow.
You may have...
2009-04-09
1,211 reads
I've never been a fan of animation in Powerpoint presentations, and as a result almost never use them in my...
2009-04-08
409 reads
Minimalist design can easily be confused with laziness, and also sometimes hard to tell the difference between minimalist and downright...
2009-04-07
366 reads
As I've covered in my two earlier posts I've been investing a little time to figure out how to make...
2009-04-06
476 reads
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
462 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...
Hello all, I’m looking for advice on how to derive a daily snapshot table...
We need to replace our Windows server running SQL 2017. Any reason not to...
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