THE PROGRAMMER'S QUICK GUIDE TO THE LANGUAGES
A brief description of some well known, and not so well known programming languages. Have you worked with any of these?
2001-11-09
2,987 reads
A brief description of some well known, and not so well known programming languages. Have you worked with any of these?
2001-11-09
2,987 reads
2001-10-15
1,867 reads
2001-10-08
1,981 reads
Pre-sliced peanut butter is on its way to U.S. store shelves in test markets - fact or fiction??
2001-10-02
758 reads
If you are like me, you probably get lots of telemarketing calls. Here's a good one to use the next time you get called by a phone company.
2001-10-01
2,723 reads
Implement this and I guarentee your tech support call volume will drop!!! (Or you'll soon be retiring)
2001-09-25
2,808 reads
This is the funniest error message Brian Knight has ever seen in SQL Server.
2001-09-18
7,258 reads
Left over from the Y2K fiasco, but a good corporate memo that might still be useful as an alternative to XP.
2001-09-10
2,065 reads
2001-09-04
3,045 reads
2001-08-20
3,481 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
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...
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