products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_1RD9FJFXNDYG"
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_00R1YSC1A7XG | CNT_1NZ4C91DTHYG | Sword Art Online Progressive Scherzo of Deep Night CNT_1RD9FJFXNDYG | CNT_1RD9FJFXNDYG | 2 | 1 | 1 | Volume 3 | [] | Sword Art Online Progressive Scherzo of Deep Night, Vol. 3 | The battle against the fifth-floor golem boss begins with a bang! Titanic limbs snatch and stomp at the small party of elites Kirito and Asuna hastily brought together, threatening to eviscerate the players long before they get their hands on the flag they came for…Will their risky plan succeed? Or will rushing to complete the floor end in the worst of all ways—dead friends, a war between the guilds, and halted progress toward escaping the game?! | 01KH3G797TBXBM2BBV5NP17335 | 3.0 | 2023-08-21T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sword Art Online Progressive Scherzo of Deep Night, Vol. 3 | 2024-01-23T00:00:00.000Z | 0 | 0 | ||||||
| PRD_1VYBPP4YFDA0 | CNT_3A71NQ0TDTM0 | Sword Art Online Progressive Scherzo of Deep Night CNT_1RD9FJFXNDYG | CNT_1RD9FJFXNDYG | 2 | 1 | 1 | Volume 1 | [] | Sword Art Online Progressive Scherzo of Deep Night, Vol. 1 | Nearly two months have passed since Kirito and Asuna found themselves trapped in the world of Aincrad. Kirito’s experience with the beta version of the game has put him far ahead of the curve, but it has also attracted the attention of some dangerous players…For Asuna, his competence has been a god send in this harsh world, yet she can’t help but feel like her overreliance on Kirito’s skills is becoming an obstacleto their growing relationship. Even so, they’ll have towork together to make it through the ancient ruins ofthe fifth floor, where all sorts of undead monsters—and player-killers—lurk in the shadows! | 01KGB4R0MHGCRWGVAQBKCYZPVC | 1.0 | 2023-02-07T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sword Art Online Progressive Scherzo of Deep Night, Vol. 1 | 2023-06-20T00:00:00.000Z | 0 | 0 | ||||||
| PRD_2M7PQM9G6AD0 | CNT_2BRHSFHNBXF0 | Sword Art Online Progressive Scherzo of Deep Night CNT_1RD9FJFXNDYG | CNT_1RD9FJFXNDYG | 2 | 1 | 1 | Volume 2 | [] | Sword Art Online Progressive Scherzo of Deep Night, Vol. 2 | Kirito and Asuna have learned a dangerous secret—the fifth-floor boss will drop a powerful item that might overturn the fragile relationship between the two strongest guilds! On top of that, the intrepid pair stumble across a Romeo-and-Juliet-style story between the guilds that gives them some distracting ideas about how dating in the game could work…But all that will have to wait until after they assemble a team to defeat the boss and stop the brewing conflict! | 01KGB6CR9AMBSX7DM1TW4QPBYG | 2.0 | 2023-04-24T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sword Art Online Progressive Scherzo of Deep Night, Vol. 2 | 2023-09-19T00: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);