You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
3.0 KiB
SQL
36 lines
3.0 KiB
SQL
BEGIN TRANSACTION;
|
|
INSERT INTO Author VALUES(1,'Frederick','Douglas');
|
|
INSERT INTO Author VALUES(2,'Abraham','Lincoln');
|
|
INSERT INTO Author VALUES(3,'Albert','Einstein');
|
|
INSERT INTO Author VALUES(4,'Benjamin','Franklin');
|
|
INSERT INTO Author VALUES(5,'Malcolm','X');
|
|
INSERT INTO Author VALUES(6,'Hugo','Chavez');
|
|
INSERT INTO Author VALUES(7,'Paulo','Friere');
|
|
INSERT INTO Quote VALUES(1,'Let me give you a word of the philosophy of reforms. The whole history of the progress of human liberty shows that all concessions yet made to her august claims have been born of struggle... If there is no struggle there is no progress... Power concedes nothing without a demand. It never did and it never will...',1,NULL,NULL);
|
|
INSERT INTO Quote VALUES(2,'As I would not be a slave, so I would not be a master. This expresses my idea of democracy.',2,NULL,NULL);
|
|
INSERT INTO Quote VALUES(3,'Everything that is really great and inspiring is created by the individual who can labor in freedom.',3,NULL,NULL);
|
|
INSERT INTO Quote VALUES(4,'As we enjoy great Advantages from the Inventions of others, we should be glad of an Opportunity to serve others by any Invention of ours, and this we should do freely and generously.',4,NULL,NULL);
|
|
INSERT INTO Quote VALUES(5,'I have often reflected upon the new vistas that reading opened to me. I knew right there in prison that reading had changed forever the course of my life. As I see it today, the ability to read awoke in me some long dormant craving to be mentally alive.',5,NULL,NULL);
|
|
INSERT INTO Quote VALUES(6,'If knowledge does not have owners, then intellectual property is a trap set by neo-liberalism.',6,NULL,'September 28, 2004');
|
|
INSERT INTO Quote VALUES(7,'Education either functions as an instrument which is used to facilitate integration of the younger generation into the logic of the present system and bring about conformity or it becomes the practice of freedom, the means by which men and women deal critically and creatively with reality and discover how to participate in the transformation of their world.',7,'Pedagogy of the Oppressed',NULL);
|
|
INSERT INTO Quote VALUES(8,'In our every deliberation, we must consider the impact of our decisions on the next seven generations.',NULL,'The Great Law of The Iroquois Confederacy',NULL);
|
|
INSERT INTO Category VALUES(1,'Freedom');
|
|
INSERT INTO Category VALUES(2,'Democracy');
|
|
INSERT INTO Category VALUES(3,'Sustainability');
|
|
INSERT INTO Category VALUES(4,'Education');
|
|
INSERT INTO Category VALUES(5,'Politics');
|
|
INSERT INTO Category VALUES(6,'Sharing');
|
|
INSERT INTO Category VALUES(7,'Knowledge');
|
|
INSERT INTO QuoteCategory VALUES(1,1);
|
|
INSERT INTO QuoteCategory VALUES(1,5);
|
|
INSERT INTO QuoteCategory VALUES(2,1);
|
|
INSERT INTO QuoteCategory VALUES(2,2);
|
|
INSERT INTO QuoteCategory VALUES(3,1);
|
|
INSERT INTO QuoteCategory VALUES(4,6);
|
|
INSERT INTO QuoteCategory VALUES(5,4);
|
|
INSERT INTO QuoteCategory VALUES(6,7);
|
|
INSERT INTO QuoteCategory VALUES(7,1);
|
|
INSERT INTO QuoteCategory VALUES(7,4);
|
|
INSERT INTO QuoteCategory VALUES(8,3);
|
|
COMMIT;
|