6 lines
		
	
	
		
			311 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			311 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| create table t1(pk bigint, c1 bigint, c2 varchar(512), c3 bigint, c4 varchar(512), primary key(pk)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
 | |
| create unique index unique_c1 on t1(c1)
 | |
| create unique index unique_c2 on t1(c2)
 | |
| create unique index unique_c3 on t1(c3)
 | |
| create unique index unique_c4 on t1(c4)
 | 
