Day1 - Assertiveness Skills: Communicating with Authority and Impact
This is the last course of my July training month. This is my second course this week. Yesterday I was...
2016-07-27
993 reads
This is the last course of my July training month. This is my second course this week. Yesterday I was...
2016-07-27
993 reads
Here's this weeks list of courses. At £750 plus VAT... I can't see how you can fail
1902: Linux Virtualisation 4...
2016-07-26
437 reads
This week is my fourth week on the spin being involved in a Learning Tree Course. This week we have...
2016-07-26
605 reads
This is the fourth week of four of my July training programming and this week we have two courses that...
2016-07-25
342 reads
It's week 3 of my jammed packed training schedule this July. This week I'm producing course 918 Agile Fundamentals: Scrum, Kanban,...
2016-07-22
499 reads
It's week 3 of my jammed packed training schedule this July. This week I'm producing course 918 Agile Fundamentals: Scrum, Kanban,...
2016-07-21
412 reads
As I have mentioned in previous posts, we have done a deal with Learning Tree to be able to offer...
2016-07-21
329 reads
It's week 3 of my jammed packed training schedule this July. This week I'm producing course 918 Agile Fundamentals: Scrum,...
2016-07-20
673 reads
…I’m about to find out.
Continuing with the July training programme, this week I producing Learning Tree course 918 Agile Fundamentals:...
2016-07-19
459 reads
Its been long but productive week at Tree Tech
This week I’m teaching Learning Tree’s course 2108 SQL Server Database Administration in the...
2016-07-15
417 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
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...
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