Created
July 24, 2018 15:25
-
-
Save jamesvanmil/6d2a182f00fd4505df8400c3377bf8ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
CONCAT('b', b.record_num, 'a'), | |
s.marc_tag, | |
s.content | |
FROM | |
sierra_view.bib_view b | |
JOIN sierra_view.subfield s ON b.id = s.record_id | |
WHERE | |
s.marc_tag = '007' | |
AND s.content LIKE '_o%' | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment