Where AI Shines
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
149 reads
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
149 reads
AI seems to be invading many different parts of our life. Today Steve wonders how much we really need.
2024-12-30 (first published: 2020-04-20)
549 reads
Artificial Intelligence systems might dramatically change our world, but they need lots of help and work to get better.
2020-03-03
153 reads
A new technique developed by Microsoft is designed to help AI/ML models get trained with minimal data.
2019-12-26
174 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
204 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
By Brian Kelley
I developed these rules a while back, before COVID. I had a period of...
By Steve Jones
Someone asked why I would use TRY_PARSE after I posted a question at SQL...
My mugI grew up surrounded by coffee farms in Guatemala and somehow spent most...
I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers