SQL Server Consulting–New for 2013
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
It is Monday today but its no ordinary Monday. Today is New Years Eve, its the end of December and...
2012-12-31
1,802 reads
I’m not working too hard today, so this is just a short post to wish all my readers a very...
2012-12-31
1,566 reads
This is a guest post by David Postlethwaite.
I’ve been wondering how to do this for years. At SQL Bits and...
2012-12-28
1,053 reads
If you blog and call yourself a blogger then you probably have a pretty full RSS reader. Mine has been...
2012-12-28
938 reads
Microsoft today announced the latest round of SQL Server Cumulative Updates
SQL Server 2012 CU 5 – You can get more information...
2012-12-28
837 reads
This is a very short post on Christmas Eve to wish all my readers a very Merry Christmas!
I’m going to...
2012-12-24
797 reads
As we approach a new year many of you will be looking at your SQL Server Training needs for 2013....
2012-12-19
774 reads
As we approach the end of 2012 – The release year for SQL Server 2012 many of you as we approach...
2012-12-17
960 reads
For those that read my blog regularly you will know that I over the last couple of years I have...
2012-12-13
1,031 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