Last active
March 1, 2023 05:13
-
-
Save rohit-gupta/829018601c4cde29f8abdc8cec73f63b to your computer and use it in GitHub Desktop.
dump photoid, url, title and description from yfcc100m metadata file
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
.open yfcc100m_dataset.sql | |
.databases | |
.tables | |
.schema yfcc100m_dataset | |
SELECT * from yfcc100m_dataset WHERE photoid=2932067831 LIMIT 1; | |
.mode csv | |
.headers on | |
.out yfcc100m_dump.csv | |
SELECT photoid, title, description, downloadurl FROM yfcc100m_dataset; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment