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
1.1 KiB
SQL

BEGIN TRANSACTION;
INSERT INTO horses VALUES (
1, 'Calypso', 'Sleipnir Stables', 'thoroughbred', 1000, '2005-03-12'
);
INSERT INTO horses VALUES (
2, 'Sunny', 'Sleipnir Stables', 'thoroughbred', 500, '2012-07-15'
);
INSERT INTO horses VALUES (
3, 'Eevee', 'Sleipnir Stables', 'paint', 300, '2020-12-20'
);
INSERT INTO horses VALUES (
4, 'Wally', 'Shenandoah Stables', 'Icelandic horse', 300, '2020-12-20'
);
INSERT INTO horses VALUES (
5, 'Calypso', 'Sleipnir Stables', 'thoroughbred', 800, '2011-06-23'
);
INSERT INTO horses VALUES (
6, 'Inny', 'Burgundy Farm', 'quarter horse', 1000, '2007-04-04'
);
INSERT INTO horses VALUES (
7, 'Calypso', 'Sleipnir Stables', 'thoroughbred', 2000, '2003-01-13'
);
INSERT INTO horses VALUES (
8, 'Eevee', 'Sleipnir Stables', 'paint', 100, '2021-03-07'
);
INSERT INTO horses VALUES (
9, 'Inny', 'Burgundy Farm', 'quarter horse', 200, '2008-03-14'
);
INSERT INTO horses VALUES (
10, 'Wally', 'Shenandoah Stables', 'Icelandic horse', 400, '2021-09-22'
);
INSERT INTO horses VALUES (
11, 'Virginia', 'Marithiel', 'Mustang', 900, '2001-08-17'
);
COMMIT;