PERFORM
Description
This executes a
query
and discards the result.
Click here to navigate to the PostgreSQL documentation page for this syntax.
Grammar Syntax
PERFORM query;
Sample Source Patterns
Input
PERFORM 'SampleMessage';
PERFORM SampleColumn FROM SampleTable;
PERFORM SampleFunction();
Known Issues
The SELECT
statement does not discard its results but behaves exactly the same as the PERFORM
statement in PostgreSQL.
Related EWIs
No related EWIs.
Last updated
Was this helpful?