I love wireless!!!
I took part of today off to attend the Denver Woodworking show north of
Denver. I left early because, well, I...
2005-11-18
1,337 reads
I took part of today off to attend the Denver Woodworking show north of
Denver. I left early because, well, I...
2005-11-18
1,337 reads
I saw Alex's post on installing a named instance of SS2K5 and having
issues with SS2K. I wanted to note that...
2005-11-18
1,381 reads
First, apologies to the Database Daily readers. I'll include one in
next week's issue as well, but the links didn't work...
2005-11-15
1,851 reads
SQL 2005 provides a the new max specifier to be used with varbinary, varchar and nvarchar data types. You can...
2005-11-12
1,286 reads
If you haven't seen it, I started a poll in the editorial today. Check it out and give you answer:...
2005-11-11
1,541 reads
Today's the day!!!
SQL Server is being released as I type this and I'm online listening to the keynote from Steve...
2005-11-07
1,461 reads
In general I have been a Sony fan for most of my life, starting with the Walkmans they brought out...
2005-11-04
1,374 reads
If anyone is interested, we are looking for people that are interested
in doing some technical editing for our magazine, the...
2005-11-02
1,403 reads
I wrote the editorial today about this, but SQL Server 2005 RTM'd yesterday!!!
If you an on MSDN Subscriber, you can...
2005-10-28
1,389 reads
Living in the D.C metro area it is difficult to avoid politics,
policies and policy-makers. After 9/11 it became well nigh
impossible ...
2005-10-28
1,383 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