mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
3467862b32
command delimiter to change the default delimiter (;) to something else, a string upto 16 characters is allowed. Separate the sub queries with ';' and end the whole statement with your own delimiter.
13 lines
217 B
Text
13 lines
217 B
Text
select 1;
|
|
delimiter ||||;
|
|
select 2;
|
|
select 3;
|
|
select 4||||
|
|
delimiter 'abcd'||||
|
|
select 5;
|
|
select 6;
|
|
select 50, 'abc';'abcd'
|
|
select "abcd'";'abcd'select "'abcd";'abcd'
|
|
select 5'abcd'
|
|
delimiter ;'abcd'
|
|
select 'finish';
|