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 614 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
24
25
26
27
  1. --- #dep common-schema
  2. --- #table locmds.book_marc_field
  3. --- #table locmds.name_marc_field
  4. CREATE SCHEMA IF NOT EXISTS locmds;
  5. DROP TABLE IF EXISTS locmds.book_marc_field CASCADE;
  6. CREATE TABLE locmds.book_marc_field (
  7. rec_id INTEGER NOT NULL,
  8. fld_no INTEGER NOT NULL,
  9. tag VARCHAR NOT NULL,
  10. ind1 VARCHAR,
  11. ind2 VARCHAR,
  12. sf_code VARCHAR,
  13. contents VARCHAR
  14. );
  15. DROP TABLE IF EXISTS locmds.name_marc_field CASCADE;
  16. CREATE TABLE locmds.name_marc_field (
  17. rec_id INTEGER NOT NULL,
  18. fld_no INTEGER NOT NULL,
  19. tag VARCHAR NOT NULL,
  20. ind1 VARCHAR,
  21. ind2 VARCHAR,
  22. sf_code VARCHAR,
  23. contents VARCHAR
  24. );
Tip!

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

Comments

Loading...