You Aren't That Interesting
Fundamentally as I get older, I think more and more men are pigs. There is definitely something wrong with them,...
2009-03-11
2,002 reads
Fundamentally as I get older, I think more and more men are pigs. There is definitely something wrong with them,...
2009-03-11
2,002 reads
I went to get new business cards from VistaPrint recently. There are lots of choices and it took longer than...
2009-03-10
621 reads
SQL Server allows nesting of Transactions –in a sense. In truth, there is only one Transaction, with each ‘nested transaction’...
2009-03-10
790 reads
This month there were 3 security bulletins released and 1 re-released:
Microsoft Security Bulletin Summary for March 2009
First, let's tackle the...
2009-03-10
1,199 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-03-10
583 reads
Kind of funny. I saw this on Twitter the other day from @DanNunan and then someone sent it to me...
2009-03-10
765 reads
Those who know me personally know that I grow my hair out to donate for kids. I have donated a...
2009-03-09
1,015 reads
I received a review copy of Murach's SQL Server 2008 For Developers a couple months back and just finished up...
2009-03-09
1,175 reads
The other day I was wandering around Best Buy and noticed that they had a few netbooks for sale. I...
2009-03-09
1,349 reads
I've grown up reading Tom Clancy and probably most of you have at least seen Red October, so this book...
2009-03-08
418 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