• but when I tried to use the below query

    IF ISNUMERIC('$123432345')=1

    SET @profile = 'NUMBER'

    ELSE

    SET @profile = 'CHAR'

    SELECT @profile

    it is also returning number even though its having $ character.

    Please help