Managing My Todo List
I think everyone struggles with keeping track of things they need to do, and it's all too easy to get...
2008-10-01
477 reads
I think everyone struggles with keeping track of things they need to do, and it's all too easy to get...
2008-10-01
477 reads
Speaker: SQL Server MVP Andy Leonard
Midlands PASS Chapter - October 2, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled...
2008-10-01
924 reads
As I have been talking to DBAs around the country, I have noticed a trend that many, if not most,...
2008-10-01
371 reads
I don't seem to find the time often, but recently I was able to fit in another visit to the...
2008-09-30
1,376 reads
I've used Amazon for years for the sheer convenience, and recently was the first time I ever needed to return...
2008-09-29
1,459 reads
Make sure you make it to the next SQL Saturday event that I will be speaking at October 25, 2008...
2008-09-29
1,302 reads
Always something going wrong around here with the podcasts. Today I was editing a couple, or attempting to, and couldn't...
2008-09-29
1,443 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-09-29
1,360 reads
I wrote a post a few months back about a healthcare data conversion project that I’ve been working on for...
2008-09-28
1,964 reads
One of things we've tried to do from the beginning is to provide each speaker & volunteer with a good quality...
2008-09-28
1,351 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...
Kamagra Oral Jelly 100 mg is a medication used to treat erectile dysfunction (ED)....
Comments posted to this topic are about the item Using OPENJSON
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