Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

loc-mds-book-info.sql 394 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. --- #dep loc-mds-index-books
  2. -- Extract more book information
  3. --- #step Extract book titles
  4. DROP MATERIALIZED VIEW IF EXISTS locmds.book_title;
  5. CREATE MATERIALIZED VIEW locmds.book_title
  6. AS SELECT rec_id, contents AS title
  7. FROM locmds.book_marc_field
  8. WHERE tag = '245' AND sf_code = 'a';
  9. CREATE INDEX locmds_book_title_rec_ids ON locmds.book_title (rec_id);
  10. ANALYZE locmds.book_title;
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...