mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	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.
		
			
				
	
	
		
			34 lines
		
	
	
		
			243 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			243 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| select 1;
 | |
| 1
 | |
| 1
 | |
| select 2;
 | |
| select 3;
 | |
| select 4||||
 | |
| 2
 | |
| 2
 | |
| 3
 | |
| 3
 | |
| 4
 | |
| 4
 | |
| select 5;
 | |
| select 6;
 | |
| select 50, 'abc';'abcd'
 | |
| 5
 | |
| 5
 | |
| 6
 | |
| 6
 | |
| 50	abc
 | |
| 50	abc
 | |
| select "abcd'";'abcd'
 | |
| abcd'
 | |
| abcd'
 | |
| select "'abcd";'abcd'
 | |
| 'abcd
 | |
| 'abcd
 | |
| select 5'abcd'
 | |
| 5
 | |
| 5
 | |
| select 'finish';
 | |
| finish
 | |
| finish
 |