SQLServerCentral Editorial

Data and Customer Service

Businesses are always looking to collect data on their customers. However when they are fgiven this data, there is a level of trust from the consumer that is expected of the business. Guest editor John Magnabosco talks about the need for database professionals to take care that we are honoring this trust.

4 (1)

You rated this post out of 5. Change rating

2009-10-21

68 reads

Blogs

Lukáš Karlovský: I got the green light from management and built Fabric specialization from scratch

By

The post Lukáš Karlovský: I got the green light from management and built Fabric...

FIRST_VALUE vs. Min: #SQLNewBlogger

By

I had mentioned some new T-SQL functions for SQL Server 2022 and a commenter...

Read the latest Blogs

Forums

Subqueries II

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Subqueries II

Distributed Monoliths

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Distributed Monoliths

JSON in PostgreSQL

By Shivayan Mukherjee

Comments posted to this topic are about the item JSON in PostgreSQL

Visit the forum

Question of the Day

Subqueries II

What is wrong (if anything) with this code?

SELECT *
 FROM Sales.SalesOrderHeader AS soh 
 WHERE customerid IN (SELECT soh.CustomerID FROM Sales.Customer AS c WHERE soh.CurrencyRateID = 1 ORDER BY c.ModifiedDate)

See possible answers