Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: BETWEEN ages

    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...

  • RE: BETWEEN ages

    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 =...

  • RE: BETWEEN ages

    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...

  • RE: BETWEEN ages

    can i do this?

    where age=<28 and age=<25

  • RE: BETWEEN ages

    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...

Viewing 5 posts - 1 through 5 (of 5 total)