SQL code used to determine how data will be updated in the database.
Example:
UPDATE auto_info SET year = {:2}, make = {:3}, model = {:4} WHERE id = {:1}
Delete
SQL code used to determine how data will be deleted from the database.
Example:
DELETE FROM auto_info WHERE id = {:1}
Search
SQL code used to determine how data will be searched in the database.
Example:
SELECT id, year, make, model FROM auto_info WHERE model ~ {:4}
Seq
SQL code used to determine a sequence value for the ID when inserting new values into the database. If not specified, it will try to use the value provided in the inputs, and if that does not exist, it will rely on the database to have a mechanism for the ID.
Example:
SELECT MAX(id) FROM auto_info
Contents
See More
Unable to render {children}. Page not found: Configuring an Advanced Database Row Field.