SQLSaturday Porto edition 2014 Session Selection Process explained
From the very first SQLSaturday event that I have helped to create (SQLSaturday #78 Portugal), I have always desired to...
2014-06-30
521 reads
From the very first SQLSaturday event that I have helped to create (SQLSaturday #78 Portugal), I have always desired to...
2014-06-30
521 reads
2014-06-30
4 reads
2014-06-30
3 reads
2014-06-30
5 reads
2014-06-30
8 reads
In this session Prakash will walk through the process he has implemented to alleviates many of the pain points for...
2014-06-30
1,068 reads
I’ll be doing a precon for SQLSaturday #324 in Baton Rouge Louisiana on August 1st, 2014 titled “A Day of...
2014-06-30
993 reads
The Product Centric Career is my latest editorial for SQLServerCentral, this one from the perspective of my own career and...
2014-06-30
1,155 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-06-30
1,618 reads
The SQL PASSSummit 2014community sessions were recently released. I’m very pleased and honored to announce that I will be presenting a...
2014-06-30
1,025 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