What is SQL Server? – Rocky Mountain Tech Trifecta
I’m doing a basic presentation at the Rocky Mountain Tech Trifecta later this month on what SQL Server is from...
2010-02-09
428 reads
I’m doing a basic presentation at the Rocky Mountain Tech Trifecta later this month on what SQL Server is from...
2010-02-09
428 reads
Note: These are my opinions and don’t reflect the official views of PASS, just my thoughts!
I’ve been to every PASS...
2010-02-09
455 reads
Just booked the travel, going up the afternoon of March 5th and returning on an early evening flight on the...
2010-02-08
340 reads
I am excited to say I have been published on Simple-Talk. This was my first foray into being professionally edited. I...
2010-02-08
328 reads
Due to arrive from China today. I got a shipping notice of 2nd day shipping from Lenovo last week, but...
2010-02-08
304 reads
I’ve been a fan of the OLPC project, even buying to raffle off at an event just so I could...
2010-02-08
352 reads
Ok Guys and Gals. I know I have been a slow blogger thus far in 2010. To try and make...
2010-02-08
344 reads
Scott Klein has put together the first annual Geek Golf event. Scheduled for May 8th, 2010, it’s being held at...
2010-02-08
523 reads
I'll be presenting two sessions this week (February 9 and 11, 2010), both on SQL Server Indexing. The first is...
2010-02-08
345 reads
If you haven't seen the Simple-Talk newsletter (it's free, so sign up!) you may not have seen my article on...
2010-02-08
1,266 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