Display All SQL DateTime Conversions
If you want a quick way to determine which format, or style, to specify when converting a datetime value in SQL to a character data type, you can use...
2014-07-18
42 reads
If you want a quick way to determine which format, or style, to specify when converting a datetime value in SQL to a character data type, you can use...
2014-07-18
42 reads
If you want a quick way to determine which format, or style, to specify when converting a datetime value in...
2014-07-18
684 reads
I was doing some work on the marketing for SQLSaturday Orlando and looked back at the messages we sent last...
2014-07-18
626 reads
I wrote What Is the Hardest Feature to Learn About SQL Server? not really knowing what answer to expect. So...
2014-07-18
1,130 reads
Photo credit – Mike Lynch
A good cure to a creepy doll is a good old post that is still useful. In...
2014-07-18
428 reads
Sometimes when work is tough you just need to take your eyes and mind away from your working console. Jokes are...
2014-07-18
6,263 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2014-07-18
324 reads
Every now and again I find myself working with SSIS for one reason or another. Every now and again I find myself fighting with SSIS because it provides less...
2014-07-17
50 reads
Every now and again I find myself working with SSIS for one reason or another. Every now and again I...
2014-07-25 (first published: 2014-07-17)
32,403 reads
I love SQL Prompt, and think it’s a great productivity tool. Even before I worked at Red Gate, I love...
2014-07-24 (first published: 2014-07-17)
9,806 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