18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Plaintext
		
	
	
drop table if exists Article;
 | 
						|
 | 
						|
create table Article (
 | 
						|
	id integer primary key,
 | 
						|
	title text default "",
 | 
						|
	text text default ""
 | 
						|
);
 | 
						|
 | 
						|
insert into Article (title, text) values (
 | 
						|
	"Hello, world!",
 | 
						|
	"V is great."
 | 
						|
);
 | 
						|
 | 
						|
insert into Article (title, text) values (
 | 
						|
	"Second post.",
 | 
						|
	"Hm... what should I write about?"
 | 
						|
);
 |