7 lines
		
	
	
		
			167 B
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			7 lines
		
	
	
		
			167 B
		
	
	
	
		
			Plaintext
		
	
	
	
| 
								 | 
							
								DROP TABLE IF EXISTS t1, t2;
							 | 
						||
| 
								 | 
							
								set @@session.binlog_format=row;
							 | 
						||
| 
								 | 
							
								create table t1 (a int);
							 | 
						||
| 
								 | 
							
								insert into t1 values (1);
							 | 
						||
| 
								 | 
							
								create table t2 select * from t1;
							 | 
						||
| 
								 | 
							
								drop table t1, t2;
							 |