To create a macro, use the CREATE MACRO statement.
For example, the following statement defines a macro for adding new employees to the Employee table and incrementing the EmpCount field in the Department table.
CREATE MACRO NewEmp (name VARCHAR(12), number INTEGER NOT NULL, dept INTEGER DEFAULT 100 ) AS (INSERT INTO Employee (Name, EmpNo, DeptNo ) VALUES (:name, :number, :dept ) ; UPDATE Department SET EmpCount=EmpCount+1 WHERE DeptNo=:dept ; ) ;
This macro defines parameters for which you must provide values each time you run the macro. A leading colon (:) indicates a reference to a parameter within the macro.