vote up 2 vote down star

Is there a way to make a TSQL variable constant?

flag

57% accept rate

6 Answers

vote up 3 vote down check

No but you can create a function and hardcode it in there and use that

Here is an example

create function fnConstant()
returns int
as
begin
return 2
end
go

select dbo.fnConstant()
link|flag
vote up 0 vote down

There are no such thing as "creating a constant" in database literature. Constants exist as they are and often called values. One can declare a variable and assign a value (constant) to it. From a scholastic view:

DECLARE @two INT
SET @two = 2

Here @two is a variable and 2 is a value/constant.

link|flag
vote up 0 vote down

In SQL 2005 and before

declare @myvalue as int
set @myvalue = 5

In SQL 2008

declare @myvalue as int = 5
link|flag
vote up 2 vote down

No, but good old naming conventions should be used.

declare @MY_VALUE as int
link|flag
vote up -1 vote down

Okay, lets see

Constants are immutable values which are known at compile time and do not change for the life of the program

that means you can never have a constant in SQL Server

declare @myvalue as int
set @myvalue = 5
set @myvalue = 10--oops we just changed it

the value just changed

link|flag
vote up 0 vote down

@ Nick: those are mutable (by calling SET later on), not constant.

There is no built-in support for constants in T-SQL. You could use SQLMenace's approach to simulate it (though you can never be sure whether someone else has overwritten the function to return something else…), or possibly write a table containing constants, as suggested over here. Perhaps write a trigger that rolls back any changes to the ConstantValue column?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.