mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			126 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			126 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists t1;
 | |
| create table t1 (n int);
 | |
| insert into t1 values (1),(2),(3);
 | |
| select * from t1;
 | |
| n
 | |
| 1
 | |
| 2
 | |
| 3
 | |
| drop table t1;
 | 
