DO

Syntax

DO expr [, expr] ...

Description

DO executes the expressions but does not return any results. In most respects, DO is shorthand forSELECT expr, ..., but has the advantage that it is slightly faster when you do not care about the result.

DO is useful primarily with functions that have side effects, such as RELEASE_LOCK().

This page is licensed: GPLv2, originally from fill_help_tables.sql

Last updated

Was this helpful?