EagleTempest
Technical User
SQL Server 2000 and .Net 2.0
Is there a difference between
and
The first gives me the results I want. The Query Builder in VB 2005 tries to be too smart and changes the first one to the second one automatically.
Thanks.
Is there a difference between
Code:
WHERE (@RegionID IS NULL OR Region = @RegionID)
Code:
WHERE (@RegionID IS NULL) OR (Region = @RegionID)
Thanks.