2014-11-11
147 reads
2014-11-11
147 reads
It’s been five years, and that’s amazing. Not many things last for a year, much less five, but the T-SQL...
2014-11-11
913 reads
After I wrote about creating tables that contain the results I expected, I wondered if I could do the same...
2014-11-10
737 reads
I missed the PASS welcome, but I did arrive to see Cloud Databases from Dr. Rimma Nehme.
We begin with a...
2014-11-10 (first published: 2014-11-06)
5,330 reads
Steve Jones looks at the dilemma of training developers and having them leave, or maybe, just having them stay untrained.
2014-11-10
216 reads
2014-11-10
1,561 reads
2014-11-07
85 reads
2014-11-07
1,765 reads
2014-11-06
121 reads
2014-11-06
2,087 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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