Starting a New Job
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
235 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
235 reads
I ran across an article recently from MSSQLTips by my friend, Brian Kelley. It talks about the ways you can...
2015-02-11
1,360 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
98 reads
2015-02-10
1,656 reads
2015-02-09
1,618 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
211 reads
2015-02-06
1,645 reads
2015-02-05
1,909 reads
2015-02-04
2,456 reads
2015-02-03
1,799 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
Comments posted to this topic are about the item Databricks Genie Spaces for SQL...
Comments posted to this topic are about the item The Costs of Multiple Platforms
Comments posted to this topic are about the item RegEx Functions II
I have this data in a table in a SQL Server 2025 database:
EmailAddressID EmailAddress 7 dylan0@ADVENTURE-WORKS.COM 8 Diane1@ADVENTURE-WORKS.COMIf I run this query, which row(s) are returned?
SELECT top 10 * FROM person.EmailAddress WHERE REGEXP_LIKE(EmailAddress, '^d') AND BusinessEntityID IN (7,8)See possible answers