mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| drop table if exists t1;
 | |
| create table t1 (id int) engine=myisam;
 | |
| insert into t1 values (1);
 | |
| create temporary table t2 select * from t1;
 | |
| drop temporary table t2;
 | |
| drop table t1;
 | 
