Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: A New (and Hopefully Better) Approach to Constants

    Why not declare a user defined function for each constant required? This will work in SQL Server 2000 as well.

    For example:

    [font="Courier New"]CREATE FUNCTION Const_Address_Work()

    RETURNS INT

    AS

    BEGIN

    RETURN 1;

    END;[/font]

    Then simply use it...

Viewing post 1 (of 1 total)