For example, in MS-SQL, you can open up a query window and run the following:
DECLARE @List AS VARCHAR(8)
SELECT @List = 'foobar'
SELECT *
FROM dbo.PubLists
WHERE Name = @List
How is this done in PostgreSQL? Can it be done?
|
|
For example, in MS-SQL, you can open up a query window and run the following:
How is this done in PostgreSQL? Can it be done? |
||
|
|
|
|
Here's an example of using a variable in plpgsql:
Have a look at the plpgsql docs for more information. |
||
|
|