DO expr [, expr] ...
DO
executes the expressions but does not return any results. In most respects, DO
is shorthand for SELECT 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()
.
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/do/