X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Fsqlite.sql;h=c52ef7bd76ad0178c7a9b9eeb26476f174dc5efc;hb=4cd3d124f2e563df4658fa999e41337defe6d7c8;hp=b3f0f0fe71829654edfa8dcaac3408252bb58417;hpb=a1cb5921a914f087163914b010ca0c4e72a57dcc;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index b3f0f0f..c52ef7b 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -1,362 +1,371 @@ --- --- Created by SQL::Translator::Producer::SQLite --- Created on Sun Nov 16 10:43:11 2008 --- -BEGIN TRANSACTION; +CREATE TABLE "artist" ( + "artistid" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100), + "rank" integer NOT NULL DEFAULT 13, + "charfield" char(10) +); +CREATE INDEX "artist_name_hookidx" ON "artist" ("name"); --- --- Table: artist --- -CREATE TABLE artist ( - artistid INTEGER PRIMARY KEY NOT NULL, - name varchar(100), - rank integer NOT NULL DEFAULT '13', - charfield char(10) -); +CREATE UNIQUE INDEX "artist_name" ON "artist" ("name"); +CREATE UNIQUE INDEX "u_nullable" ON "artist" ("charfield", "rank"); + +CREATE TABLE "bindtype_test" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "bytea" blob, + "blob" blob, + "clob" clob, + "a_memo" memo +); --- --- Table: artist_undirected_map --- -CREATE TABLE artist_undirected_map ( - id1 integer NOT NULL, - id2 integer NOT NULL, - PRIMARY KEY (id1, id2) +CREATE TABLE "collection" ( + "collectionid" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100) NOT NULL ); -CREATE INDEX artist_undirected_map_idx_id1_ ON artist_undirected_map (id1); -CREATE INDEX artist_undirected_map_idx_id2_ ON artist_undirected_map (id2); +CREATE TABLE "encoded" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "encoded" varchar(100) +); --- --- Table: bookmark --- -CREATE TABLE bookmark ( - id INTEGER PRIMARY KEY NOT NULL, - link integer NOT NULL +CREATE TABLE "event" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "starts_at" date NOT NULL, + "created_on" timestamp NOT NULL, + "varchar_date" varchar(20), + "varchar_datetime" varchar(20), + "skip_inflation" datetime, + "ts_without_tz" datetime ); -CREATE INDEX bookmark_idx_link_bookmark ON bookmark (link); +CREATE TABLE "fourkeys" ( + "foo" integer NOT NULL, + "bar" integer NOT NULL, + "hello" integer NOT NULL, + "goodbye" integer NOT NULL, + "sensors" character(10) NOT NULL, + "read_count" int, + PRIMARY KEY ("foo", "bar", "hello", "goodbye") +); --- --- Table: books --- -CREATE TABLE books ( - id INTEGER PRIMARY KEY NOT NULL, - source varchar(100) NOT NULL, - owner integer NOT NULL, - title varchar(100) NOT NULL, - price integer +CREATE TABLE "genre" ( + "genreid" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100) NOT NULL ); +CREATE UNIQUE INDEX "genre_name" ON "genre" ("name"); --- --- Table: cd --- -CREATE TABLE cd ( - cdid INTEGER PRIMARY KEY NOT NULL, - artist integer NOT NULL, - title varchar(100) NOT NULL, - year varchar(100) NOT NULL, - genreid integer, - single_track integer +CREATE TABLE "link" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "url" varchar(100), + "title" varchar(100) ); -CREATE INDEX cd_idx_artist_cd ON cd (artist); -CREATE INDEX cd_idx_genreid_cd ON cd (genreid); -CREATE INDEX cd_idx_single_track_cd ON cd (single_track); -CREATE UNIQUE INDEX cd_artist_title_cd ON cd (artist, title); - --- --- Table: cd_to_producer --- -CREATE TABLE cd_to_producer ( - cd integer NOT NULL, - producer integer NOT NULL, - PRIMARY KEY (cd, producer) +CREATE TABLE "money_test" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "amount" money ); -CREATE INDEX cd_to_producer_idx_cd_cd_to_pr ON cd_to_producer (cd); -CREATE INDEX cd_to_producer_idx_producer_cd ON cd_to_producer (producer); - --- --- Table: collection --- -CREATE TABLE collection ( - collectionid INTEGER PRIMARY KEY NOT NULL, - name varchar(100) NOT NULL +CREATE TABLE "noprimarykey" ( + "foo" integer NOT NULL, + "bar" integer NOT NULL, + "baz" integer NOT NULL ); +CREATE UNIQUE INDEX "foo_bar" ON "noprimarykey" ("foo", "bar"); --- --- Table: collection_object --- -CREATE TABLE collection_object ( - collection integer NOT NULL, - object integer NOT NULL, - PRIMARY KEY (collection, object) +CREATE TABLE "onekey" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "artist" integer NOT NULL, + "cd" integer NOT NULL ); -CREATE INDEX collection_object_idx_collection_collection_obj ON collection_object (collection); -CREATE INDEX collection_object_idx_object_c ON collection_object (object); - --- --- Table: employee --- -CREATE TABLE employee ( - employee_id INTEGER PRIMARY KEY NOT NULL, - position integer NOT NULL, - group_id integer, - group_id_2 integer, - name varchar(100) +CREATE TABLE "owners" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100) NOT NULL ); +CREATE UNIQUE INDEX "owners_name" ON "owners" ("name"); --- --- Table: event --- -CREATE TABLE event ( - id INTEGER PRIMARY KEY NOT NULL, - starts_at datetime NOT NULL, - created_on timestamp NOT NULL, - varchar_date varchar(20), - varchar_datetime varchar(20), - skip_inflation datetime +CREATE TABLE "producer" ( + "producerid" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100) NOT NULL ); +CREATE UNIQUE INDEX "prod_name" ON "producer" ("name"); --- --- Table: file_columns --- -CREATE TABLE file_columns ( - id INTEGER PRIMARY KEY NOT NULL, - file varchar(255) NOT NULL +CREATE TABLE "self_ref" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "name" varchar(100) NOT NULL ); +CREATE TABLE "sequence_test" ( + "pkid1" integer NOT NULL, + "pkid2" integer NOT NULL, + "nonpkid" integer NOT NULL, + "name" varchar(100), + PRIMARY KEY ("pkid1", "pkid2") +); --- --- Table: forceforeign --- -CREATE TABLE forceforeign ( - artist INTEGER PRIMARY KEY NOT NULL, - cd integer NOT NULL +CREATE TABLE "serialized" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "serialized" text NOT NULL ); -CREATE INDEX forceforeign_idx_artist_forcef ON forceforeign (artist); +CREATE TABLE "timestamp_primary_key_test" ( + "id" timestamp NOT NULL DEFAULT current_timestamp, + PRIMARY KEY ("id") +); --- --- Table: fourkeys --- -CREATE TABLE fourkeys ( - foo integer NOT NULL, - bar integer NOT NULL, - hello integer NOT NULL, - goodbye integer NOT NULL, - sensors character NOT NULL, - PRIMARY KEY (foo, bar, hello, goodbye) +CREATE TABLE "treelike" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "parent" integer, + "name" varchar(100) NOT NULL, + FOREIGN KEY ("parent") REFERENCES "treelike"("id") ON DELETE CASCADE ON UPDATE CASCADE ); +CREATE INDEX "treelike_idx_parent" ON "treelike" ("parent"); --- --- Table: fourkeys_to_twokeys --- -CREATE TABLE fourkeys_to_twokeys ( - f_foo integer NOT NULL, - f_bar integer NOT NULL, - f_hello integer NOT NULL, - f_goodbye integer NOT NULL, - t_artist integer NOT NULL, - t_cd integer NOT NULL, - autopilot character NOT NULL, - PRIMARY KEY (f_foo, f_bar, f_hello, f_goodbye, t_artist, t_cd) +CREATE TABLE "twokeytreelike" ( + "id1" integer NOT NULL, + "id2" integer NOT NULL, + "parent1" integer NOT NULL, + "parent2" integer NOT NULL, + "name" varchar(100) NOT NULL, + PRIMARY KEY ("id1", "id2"), + FOREIGN KEY ("parent1", "parent2") REFERENCES "twokeytreelike"("id1", "id2") ); -CREATE INDEX fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye_ ON fourkeys_to_twokeys (f_foo, f_bar, f_hello, f_goodbye); -CREATE INDEX fourkeys_to_twokeys_idx_t_artist_t_cd_fourkeys_to ON fourkeys_to_twokeys (t_artist, t_cd); +CREATE INDEX "twokeytreelike_idx_parent1_parent2" ON "twokeytreelike" ("parent1", "parent2"); --- --- Table: genre --- -CREATE TABLE genre ( - genreid INTEGER PRIMARY KEY NOT NULL, - name varchar(100) NOT NULL -); +CREATE UNIQUE INDEX "tktlnameunique" ON "twokeytreelike" ("name"); -CREATE UNIQUE INDEX genre_name_genre ON genre (name); +CREATE TABLE "typed_object" ( + "objectid" INTEGER PRIMARY KEY NOT NULL, + "type" varchar(100) NOT NULL, + "value" varchar(100) NOT NULL +); --- --- Table: liner_notes --- -CREATE TABLE liner_notes ( - liner_id INTEGER PRIMARY KEY NOT NULL, - notes varchar(100) NOT NULL +CREATE TABLE "artist_undirected_map" ( + "id1" integer NOT NULL, + "id2" integer NOT NULL, + PRIMARY KEY ("id1", "id2"), + FOREIGN KEY ("id1") REFERENCES "artist"("artistid") ON DELETE RESTRICT ON UPDATE CASCADE, + FOREIGN KEY ("id2") REFERENCES "artist"("artistid") ); -CREATE INDEX liner_notes_idx_liner_id_liner ON liner_notes (liner_id); +CREATE INDEX "artist_undirected_map_idx_id1" ON "artist_undirected_map" ("id1"); + +CREATE INDEX "artist_undirected_map_idx_id2" ON "artist_undirected_map" ("id2"); --- --- Table: link --- -CREATE TABLE link ( - id INTEGER PRIMARY KEY NOT NULL, - url varchar(100), - title varchar(100) +CREATE TABLE "bookmark" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "link" integer, + FOREIGN KEY ("link") REFERENCES "link"("id") ON DELETE SET NULL ON UPDATE CASCADE ); +CREATE INDEX "bookmark_idx_link" ON "bookmark" ("link"); --- --- Table: noprimarykey --- -CREATE TABLE noprimarykey ( - foo integer NOT NULL, - bar integer NOT NULL, - baz integer NOT NULL +CREATE TABLE "books" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "source" varchar(100) NOT NULL, + "owner" integer NOT NULL, + "title" varchar(100) NOT NULL, + "price" integer, + FOREIGN KEY ("owner") REFERENCES "owners"("id") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE UNIQUE INDEX foo_bar_noprimarykey ON noprimarykey (foo, bar); +CREATE INDEX "books_idx_owner" ON "books" ("owner"); --- --- Table: onekey --- -CREATE TABLE onekey ( - id INTEGER PRIMARY KEY NOT NULL, - artist integer NOT NULL, - cd integer NOT NULL +CREATE UNIQUE INDEX "books_title" ON "books" ("title"); + +CREATE TABLE "employee" ( + "employee_id" INTEGER PRIMARY KEY NOT NULL, + "position" integer NOT NULL, + "group_id" integer, + "group_id_2" integer, + "group_id_3" integer, + "name" varchar(100), + "encoded" integer, + FOREIGN KEY ("encoded") REFERENCES "encoded"("id") ON DELETE CASCADE ON UPDATE CASCADE ); +CREATE INDEX "employee_idx_encoded" ON "employee" ("encoded"); + +CREATE TABLE "forceforeign" ( + "artist" INTEGER PRIMARY KEY NOT NULL, + "cd" integer NOT NULL, + FOREIGN KEY ("artist") REFERENCES "artist"("artistid") +); --- --- Table: owners --- -CREATE TABLE owners ( - ownerid INTEGER PRIMARY KEY NOT NULL, - name varchar(100) NOT NULL +CREATE TABLE "self_ref_alias" ( + "self_ref" integer NOT NULL, + "alias" integer NOT NULL, + PRIMARY KEY ("self_ref", "alias"), + FOREIGN KEY ("alias") REFERENCES "self_ref"("id"), + FOREIGN KEY ("self_ref") REFERENCES "self_ref"("id") ON DELETE CASCADE ON UPDATE CASCADE ); +CREATE INDEX "self_ref_alias_idx_alias" ON "self_ref_alias" ("alias"); + +CREATE INDEX "self_ref_alias_idx_self_ref" ON "self_ref_alias" ("self_ref"); --- --- Table: producer --- -CREATE TABLE producer ( - producerid INTEGER PRIMARY KEY NOT NULL, - name varchar(100) NOT NULL +CREATE TABLE "track" ( + "trackid" INTEGER PRIMARY KEY NOT NULL, + "cd" integer NOT NULL, + "position" int NOT NULL, + "title" varchar(100) NOT NULL, + "last_updated_on" datetime, + "last_updated_at" datetime, + FOREIGN KEY ("cd") REFERENCES "cd"("cdid") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE UNIQUE INDEX prod_name_producer ON producer (name); +CREATE INDEX "track_idx_cd" ON "track" ("cd"); --- --- Table: self_ref --- -CREATE TABLE self_ref ( - id INTEGER PRIMARY KEY NOT NULL, - name varchar(100) NOT NULL +CREATE UNIQUE INDEX "track_cd_position" ON "track" ("cd", "position"); + +CREATE UNIQUE INDEX "track_cd_title" ON "track" ("cd", "title"); + +CREATE TABLE "cd" ( + "cdid" INTEGER PRIMARY KEY NOT NULL, + "artist" integer NOT NULL, + "title" varchar(100) NOT NULL, + "year" varchar(100) NOT NULL, + "genreid" integer, + "single_track" integer, + FOREIGN KEY ("artist") REFERENCES "artist"("artistid") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("genreid") REFERENCES "genre"("genreid") ON DELETE SET NULL ON UPDATE CASCADE, + FOREIGN KEY ("single_track") REFERENCES "track"("trackid") ON DELETE CASCADE ); +CREATE INDEX "cd_idx_artist" ON "cd" ("artist"); + +CREATE INDEX "cd_idx_genreid" ON "cd" ("genreid"); + +CREATE INDEX "cd_idx_single_track" ON "cd" ("single_track"); --- --- Table: self_ref_alias --- -CREATE TABLE self_ref_alias ( - self_ref integer NOT NULL, - alias integer NOT NULL, - PRIMARY KEY (self_ref, alias) +CREATE UNIQUE INDEX "cd_artist_title" ON "cd" ("artist", "title"); + +CREATE TABLE "collection_object" ( + "collection" integer NOT NULL, + "object" integer NOT NULL, + PRIMARY KEY ("collection", "object"), + FOREIGN KEY ("collection") REFERENCES "collection"("collectionid") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("object") REFERENCES "typed_object"("objectid") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE INDEX self_ref_alias_idx_alias_self_ ON self_ref_alias (alias); -CREATE INDEX self_ref_alias_idx_self_ref_se ON self_ref_alias (self_ref); +CREATE INDEX "collection_object_idx_collection" ON "collection_object" ("collection"); + +CREATE INDEX "collection_object_idx_object" ON "collection_object" ("object"); --- --- Table: sequence_test --- -CREATE TABLE sequence_test ( - pkid1 integer NOT NULL, - pkid2 integer NOT NULL, - nonpkid integer NOT NULL, - name varchar(100), - PRIMARY KEY (pkid1, pkid2) +CREATE TABLE "lyrics" ( + "lyric_id" INTEGER PRIMARY KEY NOT NULL, + "track_id" integer NOT NULL, + FOREIGN KEY ("track_id") REFERENCES "track"("trackid") ON DELETE CASCADE ); +CREATE INDEX "lyrics_idx_track_id" ON "lyrics" ("track_id"); --- --- Table: serialized --- -CREATE TABLE serialized ( - id INTEGER PRIMARY KEY NOT NULL, - serialized text NOT NULL +CREATE TABLE "cd_artwork" ( + "cd_id" INTEGER PRIMARY KEY NOT NULL, + FOREIGN KEY ("cd_id") REFERENCES "cd"("cdid") ON DELETE CASCADE ); +CREATE TABLE "liner_notes" ( + "liner_id" INTEGER PRIMARY KEY NOT NULL, + "notes" varchar(100) NOT NULL, + FOREIGN KEY ("liner_id") REFERENCES "cd"("cdid") ON DELETE CASCADE +); --- --- Table: tags --- -CREATE TABLE tags ( - tagid INTEGER PRIMARY KEY NOT NULL, - cd integer NOT NULL, - tag varchar(100) NOT NULL +CREATE TABLE "lyric_versions" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "lyric_id" integer NOT NULL, + "text" varchar(100) NOT NULL, + FOREIGN KEY ("lyric_id") REFERENCES "lyrics"("lyric_id") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE INDEX tags_idx_cd_tags ON tags (cd); +CREATE INDEX "lyric_versions_idx_lyric_id" ON "lyric_versions" ("lyric_id"); --- --- Table: track --- -CREATE TABLE track ( - trackid INTEGER PRIMARY KEY NOT NULL, - cd integer NOT NULL, - position integer NOT NULL, - title varchar(100) NOT NULL, - last_updated_on datetime +CREATE TABLE "tags" ( + "tagid" INTEGER PRIMARY KEY NOT NULL, + "cd" integer NOT NULL, + "tag" varchar(100) NOT NULL, + FOREIGN KEY ("cd") REFERENCES "cd"("cdid") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE INDEX track_idx_cd_track ON track (cd); -CREATE UNIQUE INDEX track_cd_position_track ON track (cd, position); -CREATE UNIQUE INDEX track_cd_title_track ON track (cd, title); +CREATE INDEX "tags_idx_cd" ON "tags" ("cd"); + +CREATE UNIQUE INDEX "tagid_cd" ON "tags" ("tagid", "cd"); --- --- Table: treelike --- -CREATE TABLE treelike ( - id INTEGER PRIMARY KEY NOT NULL, - parent integer, - name varchar(100) NOT NULL +CREATE UNIQUE INDEX "tagid_cd_tag" ON "tags" ("tagid", "cd", "tag"); + +CREATE UNIQUE INDEX "tags_tagid_tag" ON "tags" ("tagid", "tag"); + +CREATE UNIQUE INDEX "tags_tagid_tag_cd" ON "tags" ("tagid", "tag", "cd"); + +CREATE TABLE "cd_to_producer" ( + "cd" integer NOT NULL, + "producer" integer NOT NULL, + "attribute" integer, + PRIMARY KEY ("cd", "producer"), + FOREIGN KEY ("cd") REFERENCES "cd"("cdid") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("producer") REFERENCES "producer"("producerid") ); -CREATE INDEX treelike_idx_parent_treelike ON treelike (parent); +CREATE INDEX "cd_to_producer_idx_cd" ON "cd_to_producer" ("cd"); + +CREATE INDEX "cd_to_producer_idx_producer" ON "cd_to_producer" ("producer"); --- --- Table: twokeytreelike --- -CREATE TABLE twokeytreelike ( - id1 integer NOT NULL, - id2 integer NOT NULL, - parent1 integer NOT NULL, - parent2 integer NOT NULL, - name varchar(100) NOT NULL, - PRIMARY KEY (id1, id2) +CREATE TABLE "images" ( + "id" INTEGER PRIMARY KEY NOT NULL, + "artwork_id" integer NOT NULL, + "name" varchar(100) NOT NULL, + "data" blob, + FOREIGN KEY ("artwork_id") REFERENCES "cd_artwork"("cd_id") ON DELETE CASCADE ON UPDATE CASCADE ); -CREATE INDEX twokeytreelike_idx_parent1_parent2_twokeytre ON twokeytreelike (parent1, parent2); -CREATE UNIQUE INDEX tktlnameunique_twokeytreelike ON twokeytreelike (name); +CREATE INDEX "images_idx_artwork_id" ON "images" ("artwork_id"); --- --- Table: twokeys --- -CREATE TABLE twokeys ( - artist integer NOT NULL, - cd integer NOT NULL, - PRIMARY KEY (artist, cd) +CREATE TABLE "twokeys" ( + "artist" integer NOT NULL, + "cd" integer NOT NULL, + PRIMARY KEY ("artist", "cd"), + FOREIGN KEY ("artist") REFERENCES "artist"("artistid") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("cd") REFERENCES "cd"("cdid") ); -CREATE INDEX twokeys_idx_artist_twokeys ON twokeys (artist); +CREATE INDEX "twokeys_idx_artist" ON "twokeys" ("artist"); --- --- Table: typed_object --- -CREATE TABLE typed_object ( - objectid INTEGER PRIMARY KEY NOT NULL, - type varchar(100) NOT NULL, - value varchar(100) NOT NULL +CREATE TABLE "artwork_to_artist" ( + "artwork_cd_id" integer NOT NULL, + "artist_id" integer NOT NULL, + PRIMARY KEY ("artwork_cd_id", "artist_id"), + FOREIGN KEY ("artist_id") REFERENCES "artist"("artistid") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("artwork_cd_id") REFERENCES "cd_artwork"("cd_id") ON DELETE CASCADE ON UPDATE CASCADE ); +CREATE INDEX "artwork_to_artist_idx_artist_id" ON "artwork_to_artist" ("artist_id"); + +CREATE INDEX "artwork_to_artist_idx_artwork_cd_id" ON "artwork_to_artist" ("artwork_cd_id"); + +CREATE TABLE "fourkeys_to_twokeys" ( + "f_foo" integer NOT NULL, + "f_bar" integer NOT NULL, + "f_hello" integer NOT NULL, + "f_goodbye" integer NOT NULL, + "t_artist" integer NOT NULL, + "t_cd" integer NOT NULL, + "autopilot" character NOT NULL, + "pilot_sequence" integer, + PRIMARY KEY ("f_foo", "f_bar", "f_hello", "f_goodbye", "t_artist", "t_cd"), + FOREIGN KEY ("f_foo", "f_bar", "f_hello", "f_goodbye") REFERENCES "fourkeys"("foo", "bar", "hello", "goodbye") ON DELETE CASCADE ON UPDATE CASCADE, + FOREIGN KEY ("t_artist", "t_cd") REFERENCES "twokeys"("artist", "cd") ON DELETE CASCADE ON UPDATE CASCADE +); + +CREATE INDEX "fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye" ON "fourkeys_to_twokeys" ("f_foo", "f_bar", "f_hello", "f_goodbye"); + +CREATE INDEX "fourkeys_to_twokeys_idx_t_artist_t_cd" ON "fourkeys_to_twokeys" ("t_artist", "t_cd"); -COMMIT; +CREATE VIEW "year2000cds" AS + SELECT cdid, artist, title, year, genreid, single_track FROM cd WHERE year = "2000";