Dev Connections Recap
Last week I attended the Dev Connections conference for the first time. It was held in the Mandalay Bay resort...
2009-11-17
794 reads
Last week I attended the Dev Connections conference for the first time. It was held in the Mandalay Bay resort...
2009-11-17
794 reads
That’s a Microsoft Tag. I’m not quite sure what exactly to do with it, but here it is. Evidently you’re...
2009-11-17
513 reads
In a recent blog post Brent Ozar questioned why PASS decided to relaunch the SQL Server Standard given the failure...
2009-11-17
747 reads
SQL Rockstar tells me that unless there are photo’s, it didn’t happen. Brad McGehee published some pictures from DevConnections. See,...
2009-11-17
616 reads
Not everyone has the opportunity to call Microsoft Premier Support. For those who have not yet had this experience, I’ll...
2009-11-17
814 reads
Union and Union All, both are used to select data from one or more than one tables but still they...
2009-11-17
4,489 reads
We have been using SQL Server 2008 Integrated Full Text Search (iFTS) in Production at NewsGator for a little over...
2009-11-17
954 reads
Kimberly Trippposted today about the SQL Server MVP Deep Dives book signing event at PASS on November 4. The PASS...
2009-11-17
647 reads
This past week at the Mandalay Bay Hotel and Convention Center in Las Vegas, November 11-12, SQLServerCentral.Com held its first...
2009-11-17
568 reads
I have a pretty good administrative system here at SQLServerCentral for managing the site. The upgrades we made in 2007...
2009-11-17
710 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