Viewing 4 posts - 1 through 4 (of 4 total)
Thank you all for the prompt responses. Damn, you guys are good
December 14, 2012 at 7:52 am
Thank you ! This worked. Much appreciated it
December 14, 2012 at 7:51 am
Thank you for this but the problem is that I'm working with a table that has over 80 columns and I was thinking if there's an different, easyer way to...
December 14, 2012 at 7:06 am
well, this should work
declare @Tomax decimal(18,2)
set @Tomax=(select max(height) from @T)
set @FROM =isnull(@FROM,0)
set @tO=isnull(@tO, Tomax)
select *
from @T
where height between @FROM and @tO
If you need to round...
December 14, 2012 at 6:59 am
Viewing 4 posts - 1 through 4 (of 4 total)