2011-12-20 (first published: 2010-05-19)
10,685 reads
2011-12-20 (first published: 2010-05-19)
10,685 reads
2011-12-15 (first published: 2010-05-12)
10,026 reads
2011-12-13 (first published: 2010-05-05)
10,833 reads
2011-12-08 (first published: 2010-04-21)
10,863 reads
2011-12-06 (first published: 2010-04-14)
10,338 reads
2011-12-01 (first published: 2010-04-07)
9,973 reads
2011-11-29 (first published: 2010-03-31)
9,957 reads
2011-11-24 (first published: 2010-03-24)
10,574 reads
2011-11-22 (first published: 2010-03-17)
10,471 reads
2011-11-17 (first published: 2010-03-10)
7,998 reads
By Steve Jones
I had mentioned some new T-SQL functions for SQL Server 2022 and a commenter...
This post comes off the back of my last, where I looked at issues...
By Vinay Thakur
As this is an Artificial Intelligence (AI) World, things are changing. We can see that...
hi, i spent some time today in an existing pkg replumbing 5 flat file...
Still trying to figure out options for automating the export the result of a...
A while into install I get a Microsoft OLE DB Driver for SQL Server....
What does this code return?
SELECT ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2011' AND soh.OrderDate < '01/01/2012') AS OrdersIn2000 , ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2012' AND soh.OrderDate < '01/01/2013') AS OrdersIn2001 , ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2013' AND soh.OrderDate < '01/01/2014') AS OrdersIn2002; GOSee possible answers