2009-11-04 (first published: 2009-10-16)
172 reads
2009-11-04 (first published: 2009-10-16)
172 reads
Get some details about the 2009 SQLServerCentral party at the PASS Summit in November.
2009-10-29 (first published: 2009-07-20)
2,201 reads
Read a sample chapter from this new book about C# and LINQ from Murach.
2009-08-11
2,340 reads
2009-07-09
32 reads
2008-07-31
3,066 reads
2008-07-02
5,335 reads
2008-06-30
4,713 reads
2008-06-24
4,231 reads
2008-06-19
2,998 reads
2008-06-18
4,365 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