9 lines
		
	
	
		
			270 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			270 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists test.t1;
 | 
						|
create table test.t1(id int);
 | 
						|
drop function if exists my_function;
 | 
						|
create function my_function (arg int) returns int deterministic return arg * arg;
 | 
						|
select "sum(1)";
 | 
						|
select (1);
 | 
						|
select * from(select 1) as a;
 | 
						|
insert into test.t1 values (1);
 |