mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			190 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			190 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
create table t1 (id int) engine=InnoDB;
 | 
						|
insert into t1 values (1);
 | 
						|
create temporary table t2 engine=InnoDB select * from t1;
 | 
						|
drop temporary table t2;
 | 
						|
drop table t1;
 |