Manager of One
Are you a manager of one? Steve Jones say show this might be a good thing to be. You might improve your chances of landing the next job by showing your employer that you can be more productive.
2009-10-12
668 reads
Are you a manager of one? Steve Jones say show this might be a good thing to be. You might improve your chances of landing the next job by showing your employer that you can be more productive.
2009-10-12
668 reads
Are you a manager of one? Steve Jones say show this might be a good thing to be. You might improve your chances of landing the next job by showing your employer that you can be more productive.
2009-10-12
612 reads
Do you invest in your own career? Should you? Steve Jones asks the question in today's Friday poll.
2009-10-09
200 reads
I took a few days off recently to get a break from work. I've rarely taken time off since last...
2009-10-09
661 reads
Do you invest in your own career? Should you? Steve Jones asks the question in today's Friday poll.
2009-10-09
757 reads
Do you invest in your own career? Should you? Steve Jones asks the question in today's Friday poll.
2009-10-09
963 reads
Do you invest in your own career? Should you? Steve Jones asks the question in today's Friday poll.
2009-10-09
808 reads
I've actually been meaning to write about my journey as a SQL Server professional, but kept putting it off. I...
2009-10-09
1,292 reads
Hadoop is an interesting new software project in the Linux world that deals with large data sets. Steve Jones wonders if anyone in the SQL Server world has started working with it.
2009-10-08
1,346 reads
We've been doing video conference calls for work through LiveMeeting for a few months. After two years of audio only...
2009-10-08
612 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