Standard Deviations with CTE in SQL
I was working with a client recently getting the number of standard deviations a student was off the average number...
2014-02-24
358 reads
I was working with a client recently getting the number of standard deviations a student was off the average number...
2014-02-24
358 reads
I was working with a client recently getting the number of standard deviations a student was off the average number...
2014-02-27 (first published: 2014-02-24)
3,348 reads
Two recent salary surveys have shown that R language skills attract median salaries in excess of $110,000 in the United...
2014-02-24
1,284 reads
SQL Saturday OKC is coming up!
The event will be August 23rd, 2014!
Now is the time to get signed up. We...
2014-02-24
516 reads
As you have likely noticed in my series, Oracle Tips for MSBI Devs, I have done a lot of work...
2014-02-24
889 reads
I am honored to be the very first presenter of the new PASS chapter in Lafayette, Louisiana this Tuesday, presenting...
2014-02-23
618 reads
I will be speaking and whiteboarding for Data Architecture Virtual Chapter meeting on February 27, 2014 on the fitting topic...
2014-02-23
474 reads
Streaming video giant Netflix is experimenting with the advanced artificial intelligence method commonly known as deep learning, it explained on...
2014-02-23
894 reads
One of the key tasks of a DBA is to maintain the database indexes and make sure they are not...
2014-02-23
3,013 reads
This week the AzureCAT team is excited to make our first team appearance at the Strata conference. For those of you...
2014-02-23
468 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
Comments posted to this topic are about the item Stored Procedures for Server-Level Object...
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
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