mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			354 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			354 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- source include/testdb_only.inc
 | |
| 
 | |
| use INFORMATION_SCHEMA;
 | |
| --replace_result Tables_in_INFORMATION_SCHEMA Tables_in_information_schema
 | |
| show tables;
 | |
| --replace_result 'Tables_in_INFORMATION_SCHEMA (T%)' 'Tables_in_information_schema (T%)'
 | |
| show tables from INFORMATION_SCHEMA like 'T%';
 | |
| create database `inf%`;
 | |
| use `inf%`;
 | |
| show tables;
 | |
| drop database `inf%`;
 | 
