SELECT
, INSERT
, UPDATE
, DELETE
, or any other valid SQL statement supported by PostgreSQL.
{{$action['my-step']}}
will have two properties,
{{$action['my-step'].Error}}
{{$action['my-step'].Result}}
orders
which contains
customer_name
, product_name
, order_date
and state
Test Query
. If we test our query from the example above we receive the following:
Select
will be displayed directly in the action as shown in the picture above. If you test statements which will modify the database like Insert
or Update
the result will only show if correct SQL syntax has been applied, the test queries to not modify the database.
For SQL statements with incorrect syntax, you will receive Invalid SQL: ERROR
while testing.
copy
, add to query
or replace query
.