Cláudio Tereso

I'm from the Spectrum generation. I started copying programs from books so I could play them when I wasn't even 10 years old. From there, programming my own programs was a leap. As a teenager I did programming work for university students and when I started working it was in programming.

My interests changed and I entered the area of databases, SQL programming and network administration, areas in which I obtained several Microsoft certifications. Along the way I also published the books, by the Portuguese Editor FCA, "Local Networks in Windows 98 & 95 - Complete Course" and the corresponding update for the hated Windows Me.

I now work with SQL Server, Power BI, Azure and related Microsoft technology. I'm also having some fun with Python.
  • Interests: orienteering and all things mountain :)

Blogs

Ten Years of PowerShell

By

Ten years ago, I published a post about filming a Pluralsight Play by Play...

T-SQL Tuesday #202: 100 Hours

By

It’s time for T-SQL Tuesday again and this is a great prompt to start...

T-SQL Tuesday

By

T-SQL Tuesday is a monthly blog party hosted by a different community member each...

Read the latest Blogs

Forums

Databricks Genie Spaces for SQL Analysts: Natural Language Querying Without Leaving Your Data Platform

By mehul.bhuva@gmail.com

Comments posted to this topic are about the item Databricks Genie Spaces for SQL...

The Costs of Multiple Platforms

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Costs of Multiple Platforms

RegEx Functions II

By Steve Jones - SSC Editor

Comments posted to this topic are about the item RegEx Functions II

Visit the forum

Question of the Day

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.COM
If 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