vmware Experts Database program EU, SQL Server Event – Sofia
I was honored to be part of very first & very high professional workshop about the vmware and SQL Server. Among...
2017-04-13
468 reads
I was honored to be part of very first & very high professional workshop about the vmware and SQL Server. Among...
2017-04-13
468 reads
PASS Summit 2016 is the biggest, largest, highest rated summit in the World for the Microsoft SQL Server & BI professionals,...
2016-02-05
792 reads
Take a look this awesome document for the Azure SQL DB technical deployment with lot of the details that you need...
2016-02-02
508 reads
I’m very exciting to announce that we will have next SQL Saturday event in Albania, Tirana, which is going to...
2014-06-19
860 reads
Another free resource for learning and gaining your knowledge that might be possible to earn MCSA Certifications with few efforts....
2014-02-12
1,463 reads
Announced and available for download the SQL Server 2014 CTP2:
Release Note:
http://msdn.microsoft.com/en-us/library/dn169381%28v=sql.15%29.aspx?lc=1033
Download Location:
http://technet.microsoft.com/en-us/evalcenter/dn205290.aspx
…and something that is very welcome for the community...
2013-10-16
1,422 reads
I’m honored to be recognized as SQL Server MVP for the 2nd time in row and thank you Microsoft to...
2013-10-16
1,038 reads
2013-07-31 (first published: 2008-07-15)
1,621 reads
SQL Saturday Kosovo #225, happened last week and I’m very happy that we did for the first time in Balkan...
2013-05-27
1,221 reads
I’m so exciting to announce that the SQL Saturday Kosovo is going to be held on May 18, 2013 and...
2013-03-07
1,095 reads
By Brian Kelley
Fabiano Amorim has written an excellent article at Simple Talk on securing msdb. Here's...
By Steve Jones
This month we have a new host, which I am grateful for. So many...
I needed to do some research because there is more to #temp tables than...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
Comments posted to this topic are about the item The Range of Customers
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers