products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_1F8ZXB6MK49G"
This data as json, CSV (advanced)
Suggested facets: listed_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_1DVAETSXX4AG | CNT_0ZQ4XC2Y3HK0 | Durarara!! CNT_1F8ZXB6MK49G | CNT_1F8ZXB6MK49G | 2 | 1 | 1 | Volume 2 | [] | Durarara!!, Vol. 2 | <P> If you see Shizuo Heiwajima, don't wait around. Run!! </P><P> Mikado is an average high-schooler whose life has been anything but since moving to Ikebukuro! After coming face to-neck?-with the legendary "Headless Rider," Mikado can hardly wait to encounter more of the city's peculiar residents. But when Mikado is caught in the middle of a feud between Izaya Orihara and Shizuo Heiwajima, he soon realizes that Ikebukuro's most unbelievable characters are also among its most dangerous... </P> | 01KGAK8P35HSNSVKCM2MM289MZ | 2.0 | 2022-08-05T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1HZ7XSH80VJG | Durarara!!, Vol. 2 | 2022-08-30T00:00:00.000Z | 0 | 0 | ||||||
| PRD_1P6C1RKMT30G | CNT_3JXKK7TGCGN0 | Durarara!! CNT_1F8ZXB6MK49G | CNT_1F8ZXB6MK49G | 2 | 1 | 1 | Volume 3 | [] | Durarara!!, Vol. 3 | <P> Twisted passion accelerates disaster!! </P><P> After twenty years of searching, Celty, the headless Black Rider, has at last found her missing head-bobbing through the streets of Ikebukuro on someone else's neck! Though Celty pursues, the girl escapes on the arm of Mikado Ryuugamine, taking refuge in his apartment. But with both the legendary Rider and Yagiri Pharmaceuticals bearing down on Ryuugamine in their pursuit of the scarred girl, how can he hope to save his own neck?! </P> | 01KGB1GZP02605F19S2FWFRP0Z | 3.0 | 2022-08-10T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1HZ7XSH80VJG | Durarara!!, Vol. 3 | 2022-08-30T00:00:00.000Z | 0 | 0 | ||||||
| PRD_2TF5JEA5PFJ0 | CNT_0HGDPEWNNW4G | Durarara!! CNT_1F8ZXB6MK49G | CNT_1F8ZXB6MK49G | 2 | 1 | 1 | Volume 4 | [] | Durarara!!, Vol. 4 | <P> Dollars, rise up!! </P><P> When Yagiri Pharmaceuticals crosses the line, the true leader of the Dollars steps forward to take command of the vast network of members at his disposal...Though this unobtrusive boy holds a disturbing degree of power in the palm of his hand, Celty is preoccupied by the powers that still control her head...At the end of the day, will her twenty-year search all be for naught? Or has she found something even more precious along the way? </P> | 01KGB1QKK1J27C4HZ6HE2B1A0W | 4.0 | 2022-08-23T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1HZ7XSH80VJG | Durarara!!, Vol. 4 | 2022-08-30T00:00:00.000Z | 0 | 0 | ||||||
| PRD_38XKAXCPK6M0 | CNT_1WQHDSHHE32G | Durarara!! CNT_1F8ZXB6MK49G | CNT_1F8ZXB6MK49G | 2 | 1 | 1 | Volume 1 | [] | Durarara!!, Vol. 1 | <P> Welcome to Ikebukuro, where Tokyo's wildest characters gather!! Meet an ordinary boy who daydreams about the extraordinary. A naive stalker girl. The strongest man in Ikebukuro. A shut-in doctor with questionable credentials. A hedonistic informant...and the "headless rider" astride a pitch-black motorcycle!? As their paths cross, this eccentric cast weaves a twisted, cracked love story... </P> | 01KGAJWB1497SNXNYBT4419ZX4 | 1.0 | 2022-08-05T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1HZ7XSH80VJG | Durarara!!, Vol. 1 | 2022-08-30T00:00:00.000Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
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);