BookWalker

home / database

products

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

4 rows where series_id = "CNT_241KD6MN2Y10"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: description_short, listed_at, on_sale_at, 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_0958JGZCS1K0 CNT_0X1HFEZPT3G0 Persona Q: Shadow of the Labyrinth Side: P4 CNT_241KD6MN2Y10 CNT_241KD6MN2Y10 2 1 1 Volume 1 []   Persona Q: Shadow of the Labyrinth Side: P4 1   PERSONA Q: A NEW VIEW Yasoinaba’s very own Investigation Team are back in action in a new adventure based on the critically acclaimed Persona Q series! While enjoying Yasogami High’s cultural festival, the Team suddenly hears the ringing of a mysterious bell and a bizarre, new exhibit appears at the festival. Inside this exhibit is a most curious maze?one that will take them on a wondrous and treacherous journey. And as they explore this labyrinth, they’ll meet new foes and maybe even some new allies from the Persona universe… THE MANGA OF THE HIT VIDEO GAME PERSONA Q! SEE LESS   01KG935B0CYS7N8P3ZBRJ64JA6 1.0 2016-10-25T07:00:00.000Z Kodansha LAB_0ZM7YN9KHCT0 GEO_1PKAG51AEAQG Persona Q: Shadow of the Labyrinth Side: P4 1 (C) Mizunomoto, Atlus / Kodansha Ltd.   2016-10-25T07:00:00.000Z   0 0
PRD_21Z7VE940C1G CNT_3DB98C5CN11G Persona Q: Shadow of the Labyrinth Side: P4 CNT_241KD6MN2Y10 CNT_241KD6MN2Y10 2 1 1 Volume 3 []   Persona Q: Shadow of the Labyrinth Side: P4 3   Persona 4's Investigation Team has joined forces with Persona 3's Specialized Extracurricular Execution Squad, and the two groups continue to make their way through a series of labyrinths--hoping to unlock Zen's memories and find their way back home. With two labyrinths down and two more to go, the light at the end of the labyrinth is almost in sight. But when their next challenge brings them to an “Evil Spirit Club,” will they continue moving forward, or will they freeze up in fear...? HAUNTED HALLWAYS 01KGA3J6F7VVCKYSKJ5KMFP7EM 3.0 2018-08-07T07:00:00.000Z Kodansha LAB_0ZM7YN9KHCT0 GEO_1PKAG51AEAQG Persona Q: Shadow of the Labyrinth Side: P4 3 (C) Mizunomoto, Atlus / Kodansha Ltd.   2018-09-04T07:00:00.000Z   0 0
PRD_28W0R6CFV13G CNT_3XCTZ44JNM0G Persona Q: Shadow of the Labyrinth Side: P4 CNT_241KD6MN2Y10 CNT_241KD6MN2Y10 2 1 1 Volume 2 []   Persona Q: Shadow of the Labyrinth Side: P4 2   PERSONA Q: A NEW VIEW Yasoinaba’s very own Investigation Team are back in action in a new adventure based on the critically acclaimed Persona Q series! While enjoying Yasogami High’s cultural festival, the Team suddenly hears the ringing of a mysterious bell and a bizarre, new exhibit appears at the festival. Inside this exhibit is a most curious maze?one that will take them on a wondrous and treacherous journey. And as they explore this labyrinth, they’ll meet new foes and maybe even some new allies from the Persona universe… THE MANGA OF THE HIT VIDEO GAME PERSONA Q!   01KG98TVVHNZ57XXQD18DX7E1P 2.0 2016-10-25T07:00:00.000Z Kodansha LAB_0ZM7YN9KHCT0 GEO_1PKAG51AEAQG Persona Q: Shadow of the Labyrinth Side: P4 2 (C) Mizunomoto, Atlus / Kodansha Ltd.   2016-10-25T07:00:00.000Z   0 0
PRD_32ZPRXMHVDA0 CNT_1E77Z1Q9ZJ80 Persona Q: Shadow of the Labyrinth Side: P4 CNT_241KD6MN2Y10 CNT_241KD6MN2Y10 2 1 1 Volume 4 []   Persona Q: Shadow of the Labyrinth Side: P4 4   The culture festival draws to a close as Persona 4's Investigation Team and Persona 3's Specialized Extracurricular Execution Squad make their way to their final labyrinth. But when the final F.O.E. is none other than Rei's shadow, Zen reveals the truth behind his and Rei's mysterious pasts--and what led to the creation of the labyrinths. And as a swarm of shadows attacks Rei and traps her inside the clock tower, it's up to the two groups to go on one final mission to save their friend and find their way back home! FINAL VOLUME! SECRETS REVEALED, PUZZLES SOLVED 01KGA5C5N0Y1C4Y1ZAVH5SYVKF 4.0 2018-10-23T07:00:00.000Z Kodansha LAB_0ZM7YN9KHCT0 GEO_1PKAG51AEAQG Persona Q: Shadow of the Labyrinth Side: P4 4 (C) Mizunomoto, Atlus / Kodansha Ltd.   2018-11-06T08: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 34.299ms · Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export) · Terms of Service: Bookwalker ToS