The Evolution of AI
Artificial Intelligence systems might dramatically change our world, but they need lots of help and work to get better.
2020-03-03
144 reads
Artificial Intelligence systems might dramatically change our world, but they need lots of help and work to get better.
2020-03-03
144 reads
A new technique developed by Microsoft is designed to help AI/ML models get trained with minimal data.
2019-12-26
171 reads
AI software is being used to manage the daily work of some employees. Is this a trend that is good or bad?
2019-07-18
202 reads
Jim Harris shares three more examples of how data ...
2019-05-22
Industry group urges EU policymakers not to draw "red lines" around specific uses of AI.
2019-05-20
Many businesses are now turning towards the buzz of ‘artificial intelligence’ (AI) as they strive harder to put their specific needs...
2019-05-16
There is a lot of excitement about artificial intelligence (AI), and also a lot of fear. Let’s set aside the potential for robots to take over the world for...
2019-04-26
Anti-money laundering is an important issue for governments and banks alike. The fight to prevent terrorist financing and profiting from crime means that banks and other financial institutions are...
2019-04-12
Jim Harris shares examples of how and why AI applications are dependent on high-quality data.
The post How data quality improves artificial intelligence appeared first on SAS Blogs.
2019-04-10
Today's AI is technically "weak"—but it's complex and can have a great societal impact.
2019-04-09
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