PL/pgSQL – Constants
In PostgreSQL’s PL/pgSQL language, you can create constants using the CONSTANT keyword. Constants are values that don’t change during the execution of a PL/pgSQL block and are typically used for storing values that you want to use without modification throughout your code. Constants can be of various data types, including numeric, text, or custom types….