home / current_collection

item_view (view)

12 rows where location_code = "1patd"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: item_status_name, last_circ_act_date, checkout_total, 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
12505010   3245632 2024-07-10 A000069404731 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     349 0 996.71 2017
12505011   3245632 2024-07-10 A000069404749 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     349 0 996.71 2017
12505013   3245632 2024-07-10 A000069404764 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     333 0 996.71 2017
12505014   3245632 2024-07-10 A000069404772 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     395 0 996.71 2017
12505015   3245632 2024-07-10 A000069404780 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     398 0 996.71 2017
12505016   3245632 2024-07-10 A000069404798 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     358 0 996.71 2017
12505017   3245632 2024-07-10 A000069404806 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-07     356 0 996.71 2017
12505018   3245632 2024-07-10 A000069404814 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     385 0 996.71 2017
12505019   3245632 2024-07-10 A000069404822 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     350 0 996.71 2017
12505020   3245632 2024-07-10 A000069404830 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     126 0 996.71 2017
12505021   3245632 2024-07-10 A000069404848 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 - CHECK SHELVES 2025-07-18     377 0 996.71 2017
12505012   3245632 2024-07-10 A000069404756 Laptop 1patd Main - 1st Floor South - Technology Dispenser Main Library laptop     Laptop computer [kit]. 1 n BILLED 2025-02-27 2025-02-27 2025-02-27 161 0 996.71 2017

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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;
Powered by Datasette · Queries took 405.226ms