Here is a small simple Thanksgiving teaser. What do you think will the result be of the select count query?
USE tempdb
GO
CREATE TABLE Customer (CustomerID INT PRIMARY KEY)
INSERT Customer VALUES (1)
INSERT Customer VALUES (2)
INSERT Customer VALUES (3)
INSERT Customer VALUES (4)
SELECT COUNT(*) Customer
Wednesday, November 21, 2007
Thanksgiving SQL Teaser: COUNT
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment