item_view (view)
3 rows where location_code = "1pamg"
This data as json, CSV (advanced)
Suggested facets: item_format, best_title, renewal_total, publish_year, creation_date (date), last_circ_act_date (date), checkout_date (date), due_date (date)
item_record_num | volume_record_num | bib_record_num | creation_date | barcode | item_format | location_code | location_name | branch_name | item_callnumber | vol_statement | best_author | best_title | agency_code_num | item_status_code | item_status_name | last_circ_act_date | checkout_date | due_date | checkout_total | renewal_total | item_price | publish_year |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
12489920 | 1542010 | 1897023 | 2024-06-28 | A000080275094 | Juvenile Magazine | 1pamg | Main - 1st Floor South - Magazines & Newspapers | Main Library | periodical | NO. 542 Aug 2024 | National Geographic kids. | 1 | - | CHECK SHELVES | 2024-12-10 | 1 | 2 | 5.0 | 2002 | |||
12617201 | 1542013 | 1897023 | 2024-10-23 | A000082083496 | Juvenile Magazine | 1pamg | Main - 1st Floor South - Magazines & Newspapers | Main Library | periodical | NO. 545 Nov 2024 | National Geographic kids. | 1 | - | CHECK SHELVES | 2025-07-14 | 2025-07-14 | 2025-08-25 | 2 | 0 | 5.0 | 2002 | |
11185715 | 1514221 | 3409873 | 2021-05-26 | A000071079851 | Magazine | 1pamg | Main - 1st Floor South - Magazines & Newspapers | Main Library | periodical | V. 26 NO. 10 Jun 2021 | Easy English news. | 1 | - | CHECK SHELVES | 0 | 0 | 5.0 | 1996 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW item_view AS select item.item_record_num, item.volume_record_num, item.bib_record_num, item.creation_date, item.barcode, item.item_format, item.location_code, location_name."name" as location_name, branch_name."name" as branch_name, item.item_callnumber, item.volume_record_statement as vol_statement, bib.best_author, bib.best_title, item.agency_code_num, item.item_status_code, item_status_property.item_status_name, coalesce( item.checkout_date, item.last_checkin_date, item.last_checkout_date ) as last_circ_act_date, item.checkout_date, item.due_date, item.checkout_total, item.renewal_total, item.price_cents / 100.0 as item_price, bib.publish_year from item left outer join bib on bib.bib_record_num = item.bib_record_num left outer join location on location.code = item.location_code left outer join location_name on location_name.location_id = location.id left outer join branch on branch.code_num = location.branch_code_num left outer join branch_name on branch_name.branch_id = branch.id left outer join item_status_property on item_status_property.item_status_code = item.item_status_code;