8 lines
		
	
	
		
			194 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			194 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1,t2,left_table;
 | 
						|
create table t1(c0 int primary key, c1 int , c2 int);
 | 
						|
insert into t1 values(1,10,100);
 | 
						|
select c1+10 c3, c2 from t1 where c0=1;
 | 
						|
c3	c2
 | 
						|
20	100
 | 
						|
drop table t1;
 |