Book Review: The Board Book
I ordered the ' target=_blank>The Board Book from Amazon ($18) to try to get some ideas for how to do a...
2009-10-22
584 reads
I ordered the ' target=_blank>The Board Book from Amazon ($18) to try to get some ideas for how to do a...
2009-10-22
584 reads
I was chatting on FaceBook today with a guy from my church who is learning to be a network engineer. He's...
2009-10-22
926 reads
Today while checking the logins, just want to clear/clean logins which are no longer exists on NT domain.
To get...
2009-10-22
553 reads
I thought I’d finish up the notes by listing things that went well and not so well:
Jack Corbett really helped...
2009-10-22
539 reads
There has been quite a discussion today on the direction of PASS (the Professional Association for SQL Server) and some...
2009-10-22
679 reads
Anyone who has an Internet connection has kept up with PASS-related news during the past couple of weeks is keenly...
2009-10-22
777 reads
I’ve been wanting to write this for a while, but have been waiting for the board elections to close. Lots...
2009-10-22
843 reads
Eric Wisdahl posted some questions on my last update, and I thought I’d reply here to make my answers more...
2009-10-22
795 reads
Well, the event is over and the Event Evaluations have been tabulated. I’ve already posted my week leading up to...
2009-10-22
360 reads
I hate to start a blog war, but maybe there's one going on. The recent PASS 2009 election concluded a...
2009-10-22
1,836 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