sql SQL Server中的常量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql SQL Server中的常量相关的知识,希望对你有一定的参考价值。

--Constants in SQL Server
--Since SQL Server and T-SQL doesn't support the concept of
--Constants, this is one example of how to mimic the functionality.
--Source: http://stackoverflow.com/questions/26652/is-there-a-way-to-make-a-tsql-variable-constant

CREATE FUNCTION fnConstant() 
RETURNS INT 
AS 
  BEGIN 
      RETURN 2 
  END 

GO 

SELECT dbo.fnConstant()

以上是关于sql SQL Server中的常量的主要内容,如果未能解决你的问题,请参考以下文章

用户定义的标量函数的 SQL*Server 常量值 - 性能

在 SQL Server 中使用常量 1 或 0 隐含位

传递值为 null 的变量与传递常量 null 时,Sql Server UDF 的行为不同

SQL server --时间日期函数类型转换

修改 SQL 代码以选择下拉列表而不是常量文本

也谈SQL Server 2008 处理隐式数据类型转换在运行计划中的增强