How To Declare Variable In PostgreSQL 9

IT Support Forum Forums Databases PostgreSQL SQL Queries How To Declare Variable In PostgreSQL 9

Tagged: 

Viewing 0 reply threads
  • Author
    Posts
    • #1930
      Webmaster
      Keymaster

      Declaring variables in PostgreSQL 9 is not as simple as with MSSQL. To declare a variable in PostgreSQL 9, you must use the following syntax:

      DO $$
      DECLARE variableName TEXT := ‘value of variable’;
      BEGIN
      END $$;

      You can assign variables in PosgreSQL by simply typing the variables name, followed by := ???, where ??? is the value of the variable you want to set.

Viewing 0 reply threads
  • You must be logged in to reply to this topic.