Viewing 2 posts - 1 through 2 (of 2 total)
Thanks, But the actual result not like that.
I have 2 date ranges, the table values may fall in between this dates or may overlap the table values.
Pls help.....
September 26, 2005 at 10:02 pm
#593164
Try this,
SET NOCOUNT ON
CREATE TABLE testcase
(
MyDecimal DECIMAL(2, 0) NOT NULL
)
CREATE INDEX ix_test ON testcase (MyDecimal)
DECLARE @v-2 REAL
SET @v-2=999999
INSERT INTO testcase VALUES (2)
SELECT * FROM...
April 14, 2005 at 5:04 am
#552652