Viewing 5 posts - 1 through 5 (of 5 total)
THANK YOU ALL !!, it's working this way:
DECLARE @minage INT
DECLARE @maxage INT
SET @minage = @FromAge
SET @maxage = @ToAge
if @minage > @maxage set @minage = @maxage + @minage...
April 5, 2012 at 2:10 pm
anthony.green
this is now my code like you said:
DECLARE @minage INT
DECLARE @maxage INT
SET @minage = @FromAge
SET @maxage = @ToAge
--if @minage < @maxage do nothing
if @minage > @maxage set @minage =...
March 30, 2012 at 3:27 am
SSCoach its matter because i want the
user to select age from from range of number (select box - min) to range of number (select box - max)
and also select...
March 30, 2012 at 2:56 am
thanks for replay.
Is there any way to do it in a way that it display
me the data even if
The first value is less than or equal to the second
.
I...
March 29, 2012 at 4:50 pm
Viewing 5 posts - 1 through 5 (of 5 total)