what will be the equivalent PostgreSQL query of the below T-SQL query?
DECLARE @IncrementValue int
SET @IncrementValue = 1
UPDATE Table1 SET Column1 = Column1 + @IncrementValue
what will be the equivalent PostgreSQL query of the below T-SQL query?
DECLARE @IncrementValue int
SET @IncrementValue = 1
UPDATE Table1 SET Column1 = Column1 + @IncrementValue