New Author Experience
I was just reading Andy Leonard's blog about being a new author and thought, hey, I need a blog, too!
I'm...
2005-08-29
1,326 reads
I was just reading Andy Leonard's blog about being a new author and thought, hey, I need a blog, too!
I'm...
2005-08-29
1,326 reads
Grr, it's annoying, but it's a good thing.
After the ASP.NET errors, I ordered memory a few days ago from
Crucial.com. They...
2005-08-29
1,352 reads
There's an interesting series about technology in schools in Milwaukee
(part
1, part
2, and part
3) and it inspired me to an edditorial...
2005-08-24
1,813 reads
We had a major out of memory error on ASP.NET this morning and I woke
up to a few dozen messages...
2005-08-23
1,380 reads
The top ten MS blogs were
listed in Redmond magazine and two were SQL Server guys. I do get quite
a few...
2005-08-19
1,380 reads
the more I'm sure that I'm getting dumber with SQL Server.
This week I've been working on some QODs based...
2005-08-09
1,356 reads
I scan about 30 or 40 blogs these days, all from various SQL Server
people around the globe, and enter the...
2005-08-08
1,454 reads
I got asked by someone to technically review their SQL Server 2005
book, so I'm betting that there will be lots...
2005-08-05
1,452 reads
Interesting post by Andy Leonard.
I'll add in my two cents that you should seek happiness and
satisfaction in your job. I...
2005-07-29
1,519 reads
for a week. I'm leaving for vacation and leaving SQLServerCentral.com
in the capable hands of Andy. He'll be sending out some...
2005-07-15
1,388 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