最佳答案
有一个几乎相同,但没有真正回答问题 给你。
我正在将一个应用程序从 MSSQLServer 迁移到 PostgreSQL。在代码的许多地方,我使用本地变量,所以我想去的变化,需要较少的工作,所以你能告诉我哪一个是最好的方式来翻译以下代码?
-- MS SQL Syntax: declare 2 variables, assign value and return the sum of the two
declare @One integer = 1
declare @Two integer = 2
select @One + @Two as SUM
返回:
SUM
-----------
3
(1 row(s) affected)
如果 Postgreql 8.4甚至9.0包含能够简化翻译的重要特性,我将使用它。