Soon will start 24 Hrs of PASS – free SQL knowledge stuff
Yes, 24 Hours of PASS will start soon two days in row, 7-8 September 2011! Just for info for those...
2011-09-06
766 reads
Yes, 24 Hours of PASS will start soon two days in row, 7-8 September 2011! Just for info for those...
2011-09-06
766 reads
2011-06-13
It's late but I need to say some words about our local tech event, it is the only one that...
2011-06-10
1,999 reads
Today Marlon Ribunal twittes come with new info about MS Certifications exams are rising…
This is not a good news, so...
2011-04-28
750 reads
Today Marlon Ribunal twittes come with new info about MS Certifications exams are rising...
This is not a good news, so...
2011-04-26
928 reads
Hello everybody, some tech events are announced to be held in Kosova soon …
Soon other details will be posted and...
2011-04-19
536 reads
Free tools are very welcome to the community, while some of the creators of these kind of the tools are...
2010-12-28
1,538 reads
SAC (Surface Are Configuration) was the great possibility to configure the SQL Server 2005, so there were some options to...
2010-12-17
1,496 reads
Update from Microsoft for SQL Server 2008 & 2008 R2. There is the graphical map of the system views included SQL...
2010-12-09
1,040 reads
Yesterday, I have received the official email from the PASS HQ, and the confirmation that now I'm the leader of...
2010-11-25
821 reads
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...
How I used AI for this postChatGPT to generate images based on info specifically...
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