How do you use script variables in PostgreSQL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:14:06Zhttp://stackoverflow.com/feeds/question/36959http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36959/how-do-you-use-script-variables-in-postgresql1How do you use script variables in PostgreSQL?Craig Walker2008-08-31T16:54:33Z2008-09-22T05:57:25Z
<p>In MS SQL Server, create my scripts to use customizable variables:</p>
<p>declare @somevariable int<br />
select @somevariable = -1</p>
<p>insert into foo values ( @somevariable )</p>
<p>I'll then change the value of @somevariable at runtime, depending on the value that I want the particular situation. Since it's at the top of the script it's easy to see & remember.</p>
<p>How do I do the same with PostgreSQL?</p>
<p>Googling turned up <a href="http://www.postgresql.org/docs/8.1/static/app-psql.html#APP-PSQL-VARIABLES" rel="nofollow">PSQL variables</a>, but it's implied that they can only be used <em>within other slash commands</em>, not in actual SQL.</p>
<p>EDIT: Found my own answers, and they're actually fairly complicated. Sort the posts older->newer to follow my discoveries.</p>
http://stackoverflow.com/questions/36959/how-do-you-use-script-variables-in-postgresql/36967#369670Answer by Craig Walker for How do you use script variables in PostgreSQL?Craig Walker2008-08-31T17:07:32Z2008-08-31T17:07:32Z<p>Found my own answer further down that linked page:</p>
<blockquote>
<p>An additional useful feature of psql variables is that you can substitute ("interpolate") them into regular SQL statements.</p>
</blockquote>
<p>I tried this already and got a problem, but this suggests that my problem isn't related to the variable after all. </p>
http://stackoverflow.com/questions/36959/how-do-you-use-script-variables-in-postgresql/36979#369791Answer by Craig Walker for How do you use script variables in PostgreSQL?Craig Walker2008-08-31T17:14:56Z2008-08-31T17:14:56Z<p>FWIW, the real problem was that I had included a semicolon at the end of my \set command:</p>
<blockquote>
<p>\set owner_password 'thepassword';</p>
</blockquote>
<p>The semicolon was interpreted as an actual character in the variable:</p>
<blockquote>
<p>\echo :owner_password
thepassword;</p>
</blockquote>
<p>So when I tried to use it:</p>
<blockquote>
<p>CREATE ROLE myrole LOGIN UNENCRYPTED PASSWORD :owner_password NOINHERIT CREATEDB CREATEROLE VALID UNTIL 'infinity';</p>
</blockquote>
<p>...I got this:</p>
<blockquote>
<p>CREATE ROLE myrole LOGIN UNENCRYPTED PASSWORD thepassword; NOINHERIT CREATEDB CREATEROLE VALID UNTIL 'infinity';</p>
</blockquote>
<p>That not only failed to set the quotes around the literal, but split the command into 2 parts (the second of which was invalid as it started with "NOINHERIT"). </p>
<p>The moral of this story: PostgreSQL "variables" are really macros used in text expansion, not true values. I'm sure that comes in handy, but it's tricky at first.</p>
http://stackoverflow.com/questions/36959/how-do-you-use-script-variables-in-postgresql/36989#369890Answer by Craig Walker for How do you use script variables in PostgreSQL?Craig Walker2008-08-31T17:36:49Z2008-08-31T17:36:49Z<p>One final word on PSQL variables:</p>
<ol>
<li>They don't expand if you enclose them in single quotes in the SQL statement.
Thus this doesn't work:</li>
</ol>
<blockquote>
<p>SELECT * FROM FOO WHERE BAR = ':myvariable'</p>
</blockquote>
<ol>
<li>To expand to a string literal in a SQL statement, you have to include the quotes in the variable set. However, the variable value already has to be enclosed in quotes, which means that you need a <em>second</em> set of quotes, and the inner set has to be escaped. Thus you need:</li>
</ol>
<blockquote>
<p>\set myvariable '\'somestring\''
SELECT * FROM FOO WHERE BAR = :myvariable</p>
</blockquote>
http://stackoverflow.com/questions/36959/how-do-you-use-script-variables-in-postgresql/113366#1133661Answer by snorkel for How do you use script variables in PostgreSQL?snorkel2008-09-22T05:57:25Z2008-09-22T05:57:25Z<p>You need to use one of the procedural languages such as PL/pgSQL not the SQL proc language.
In PL/pgSQL you can use vars right in SQL statements.
For single quotes you can use the quote literal function. </p>