BookWalker

home / database

products

Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)

6 rows where series_id = "CNT_2ADQQY1KK0E0"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: listed_at (date), on_sale_at (date)

id ▼ content_id series_id parent_content_id level content_type product_type title alt_titles subtitle display_title display_title_short description description_short image_id display_order listed_at label_id geoblock_id display_name copyright on_presale_at on_sale_at off_sale_at add_on add_on_campaign_only
PRD_13XFCXCG0V6G CNT_193PA29V3D50 Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 4 []   Girls' Last Tour, Vol. 4   Chito and Yuri's post-apocalyptic, everyday adventures continue as the two discover a mysterious living creature!   01KGA9058R02KXR8VE9Z40AFXJ 4.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 4     2020-04-21T07:00:00.000Z   0 0
PRD_16KZZGETCT5G CNT_38E3ADY3EC60 Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 2 []   Girls' Last Tour, Vol. 2   Distant lights illuminating the darkness pique Chito's and Yuuri's curiosity, so the two hop aboard their beloved Kettenkrad and head for the horizon. What they find may not be what they were looking for, but the surviving fragments of civilization are enough to keep them going. There's no telling what other strange surprises lie in store as their journey continues...   01KGA8ZZ4E04J3ASNGMNM2Q5GC 2.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 2     2020-04-21T07:00:00.000Z   0 0
PRD_1ZCW1AKE4W7G CNT_39SSAGKJME40 Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 6 []   Girls' Last Tour, Vol. 6   Chito and Yuuri have arrived at the highest stratum, but their journey will not be over until they reach the very top of the city. Along the way, they continue to explore the evidences of humanity's innovation and growth through the ages, now nothing more than crumbling ruins. Having learned what they can about the past, what awaits them in the future as the girls embark on the final leg of their tour...?   01KGA909ANXK4BZBMAH4S10GBY 6.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 6     2020-04-21T07:00:00.000Z   0 0
PRD_30AQ57ZNEVP0 CNT_28SCTB4Z9WPG Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 3 []   Girls' Last Tour, Vol. 3   (Volume 2)Titus and Yuri continue traveling in a world where the civilization collapsed. What did the two who ventured to the upper level of the city find?   01KGA9003BBTXWM8JW0R3WS250 3.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 3     2020-04-21T07:00:00.000Z   0 0
PRD_34V7GTSZATN0 CNT_083T5PS7MVQG Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 1 []   Girls' Last Tour, Vol. 1   Civilization is dead, but not Chito and Yuuri. Time to hop aboard their beloved Kettenkrad motorbike and wander what's left of the world! Sharing a can of soup or scouting for spare parts might not be the experience they were hoping for, but all in all, life isn't too bad...   01KG9BT123D1SDBG5X5ASPAYWD 1.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 1     2020-04-21T07:00:00.000Z   0 0
PRD_3XM4VMXK2WQ0 CNT_09EZTSEPTXNG Girls' Last Tour CNT_2ADQQY1KK0E0 CNT_2ADQQY1KK0E0 2 1 1 Volume 5 []   Girls' Last Tour, Vol. 5   Even after a mysterious life form tells Chito and Yuri the end of the earth is near, still they continue their everyday adventures together, traveling slowly toward the city on the top-most layer. Their days pass as usual: with the goal of food and making it to tomorrow, with a little bit of relaxing and kicking-back, of course.   01KGA907NMM2SYVGAERHQ6BENE 5.0 2020-04-15T07:00:00.000Z Yen Press LAB_0MPN6X9X3ADG GEO_1PQM5BDYSMG0 Girls' Last Tour, Vol. 5     2020-04-21T07:00:00.000Z   0 0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE products (
      id TEXT PRIMARY KEY,
      content_id TEXT NOT NULL,
      series_id TEXT NOT NULL,
      parent_content_id TEXT,
      level INTEGER NOT NULL,
      content_type INTEGER NOT NULL,
      product_type INTEGER NOT NULL,
      title TEXT NOT NULL,
      alt_titles TEXT NOT NULL,
      subtitle TEXT NOT NULL,
      display_title TEXT NOT NULL,
      display_title_short TEXT NOT NULL,
      description TEXT NOT NULL,
      description_short TEXT NOT NULL,
      image_id TEXT NOT NULL,
      display_order REAL NOT NULL,
      listed_at TEXT NOT NULL,
      label_id TEXT NOT NULL,
      geoblock_id TEXT,
      display_name TEXT NOT NULL,
      copyright TEXT,
      on_presale_at TEXT,
      on_sale_at TEXT NOT NULL,
      off_sale_at TEXT,
      add_on INTEGER NOT NULL,
      add_on_campaign_only INTEGER NOT NULL,
      FOREIGN KEY (series_id) REFERENCES series(id),
      FOREIGN KEY (label_id) REFERENCES labels(id),
      FOREIGN KEY (geoblock_id) REFERENCES geoblocks(id)
    );
CREATE INDEX idx_products_content ON products(content_id);
CREATE INDEX idx_products_series ON products(series_id);
CREATE INDEX idx_products_label ON products(label_id);
CREATE INDEX idx_products_geoblock ON products(geoblock_id);
CREATE INDEX idx_products_image ON products(image_id);
Powered by Datasette · Queries took 25.67ms · Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export) · Terms of Service: Bookwalker ToS