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-schema.sql 522 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. CREATE SCHEMA IF NOT EXISTS locmds;
  2. DROP TABLE IF EXISTS locmds.book_marc_field CASCADE;
  3. CREATE TABLE locmds.book_marc_field (
  4. rec_id INTEGER NOT NULL,
  5. fld_no INTEGER NOT NULL,
  6. tag VARCHAR NOT NULL,
  7. ind1 VARCHAR,
  8. ind2 VARCHAR,
  9. sf_code VARCHAR,
  10. contents VARCHAR
  11. );
  12. DROP TABLE IF EXISTS locmds.name_marc_field CASCADE;
  13. CREATE TABLE locmds.name_marc_field (
  14. rec_id INTEGER NOT NULL,
  15. fld_no INTEGER NOT NULL,
  16. tag VARCHAR NOT NULL,
  17. ind1 VARCHAR,
  18. ind2 VARCHAR,
  19. sf_code VARCHAR,
  20. contents VARCHAR
  21. );
Tip!

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

Comments

Loading...