30 lines
607 B
PL/PgSQL
30 lines
607 B
PL/PgSQL
-- Transmissions data import
|
|
-- Generated by ETL script
|
|
|
|
BEGIN;
|
|
|
|
INSERT INTO transmissions (id, type) VALUES
|
|
(1,'1-Speed Automatic'),
|
|
(2,'10-Speed Automatic'),
|
|
(3,'2-Speed Automatic'),
|
|
(4,'3-Speed Automatic'),
|
|
(5,'4-Speed Automatic'),
|
|
(6,'4-Speed Manual'),
|
|
(7,'5-Speed Automatic'),
|
|
(8,'5-Speed Manual'),
|
|
(9,'6-Speed Automatic'),
|
|
(10,'6-Speed Dual-Clutch'),
|
|
(11,'6-Speed Manual'),
|
|
(12,'7-Speed Automatic'),
|
|
(13,'7-Speed Dual-Clutch'),
|
|
(14,'7-Speed Manual'),
|
|
(15,'8-Speed Automatic'),
|
|
(16,'9-Speed Automatic'),
|
|
(17,'Automatic'),
|
|
(18,'CVT'),
|
|
(19,'Manual');
|
|
|
|
SELECT setval('transmissions_id_seq', 19);
|
|
|
|
COMMIT;
|