I'm using Postgresql 9.6 version
I want to use an user value like "declare"
DECLARE @Val1 INT
SET @VAL1 = 123
SELECT @Var1 [INT]
But it's impossible to use the "Declare" definition at PostgreSQL. How to I use an user value in simple?
I'm using Postgresql 9.6 version
I want to use an user value like "declare"
DECLARE @Val1 INT
SET @VAL1 = 123
SELECT @Var1 [INT]
But it's impossible to use the "Declare" definition at PostgreSQL. How to I use an user value in simple?