Last active
October 14, 2021 13:24
-
-
Save afcotroneo/38508561fc76201108c8ccec69a07119 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#Recursive Globbing | |
COPY table_1 FROM ".../subdir"; | |
returns file_3, file_4, file_5 | |
#Wildcard Globbing | |
COPY table_1 FROM ".../subdir/file*"; | |
returns file_3, file_4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment