[DRAFT]This page is not published. Only visible in development mode.

Procedures

Procedures encapsulate reusable logic. Define them once, call them from queries, tests, or other procedures.

Create a Procedure

$ Create Procedure
$ ctrl+enter to run

A procedure has a name and a body. Call it with CALL.

Parameters

$ Procedure Parameters
$ ctrl+enter to run

Procedures can take typed parameters. Reference them with $param in the body.