Swiss SQLSaturday
Jack Corbett sent me an email this morning about the Swiss SQLSaturday, very cool! They did a great job on...
2009-08-18
745 reads
Jack Corbett sent me an email this morning about the Swiss SQLSaturday, very cool! They did a great job on...
2009-08-18
745 reads
I’ve touched on it some in the past, but it’s a question that comes up a lot when we discuss...
2009-08-17
1,253 reads
Not obvious how to do this, go to http://www.regonline.com/Checkin.asp?EventId=685107, login, then click on Agenda. You can then add any of...
2009-08-17
761 reads
Posted today, Andy Leonard is the second person on the Council, and we’re glad to have him. Read the announcement...
2009-08-17
641 reads
The official announcement was just posted, Kevin Kline is the first member of the Advisory Council. As I mentioned on...
2009-08-14
1,045 reads
The Coldest Winter: America and the Korean War by David Halberstam ($15 at Amazon) was really the first reading I...
2009-08-14
689 reads
We’ve just posted our core guidelines for technical content on sqlpass.org. The short story is there are three main ways...
2009-08-12
871 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-08-12
414 reads
Cross posted on the SQLSaturday blog as well.
We started SQLSaturday back in May 2007 because we wanted a SQL event...
2009-08-12
560 reads
Ran across this recently, 33 Ways to Use LinkedIn for Business and thought I’d post it since I’ve talked about...
2009-08-12
319 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