The Selfish Case for Learning AI
Steve has a good reason to spend time working with and learning about AI technology.
2025-10-31
142 reads
Steve has a good reason to spend time working with and learning about AI technology.
2025-10-31
142 reads
2025-10-24
104 reads
Learning is fundamental in technology. Steve has a few thoughts on adopting a new technology at work.
2025-10-17
122 reads
2025-08-27
198 reads
Asking for a raise is a scary event for many employees. Today Steve gives you a few things to think about and some advice on how to go about changing your job.
2025-08-20
98 reads
Is AI going to kill off a lot of data professional jobs? Steve doesn't think so, but judge for yourself.
2025-08-18
126 reads
2025-08-13
96 reads
Steve talks a bit about the choice to ask for a raise in the current climate.
2025-06-14
82 reads
Steve has advice for students looking to become data professionals.
2025-06-02
151 reads
People with certifications are seeing their pay rise faster than others. Steve has a few thoughts on this today.
2025-05-05
154 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