Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 323 Bytes

do.md

File metadata and controls

15 lines (10 loc) · 323 Bytes

The Do works in a similar way to the SELECT statement, but without returning a result set

For example to select all fields from commits table.

DO SLEEP(10);

Where DO Cannot be Used

We can’t use DO everywhere that we can use SELECT. For example we can’t do the following:

DO * FROM branches;