| 
									
										
										
										
											2011-07-13 20:58:48 +00:00
										 |  |  | create table tests
 | 
					
						
							|  |  |  | ( Id   INTEGER      NOT NULL,
 | 
					
						
							|  |  |  |   Name VARCHAR(255) NOT NULL,
 | 
					
						
							|  |  |  |   primary key(Id)
 | 
					
						
							|  |  |  | );
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | insert into tests values (1, 'a');
 | 
					
						
							|  |  |  | insert into tests values (2, 'b');
 | 
					
						
							|  |  |  | insert into tests values (3, 'c');
 | 
					
						
							|  |  |  | insert into tests values (4, 'd');
 | 
					
						
							| 
									
										
										
										
											2017-09-23 15:58:07 +01:00
										 |  |  | insert into tests values (5, 'hello');
 |