├── .editorconfig ├── .github └── workflows │ ├── README.md │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── .zenodo.json ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yaml ├── episodes ├── 01-introduction.md ├── 02-selecting-sorting-data.md ├── 03-filtering.md ├── 04-ordering-commenting.md ├── 05-aggregating-calculating.md ├── 06-joins-aliases.md ├── 07-saving-queries.md ├── 08-database-design.md ├── 09-create.md ├── 10-other-tools.md ├── 11-extra-challenges.md ├── Bonus_GoodStyle.md ├── fig │ ├── articles-erd-v02.png │ ├── articles-erd.png │ ├── doaj-spreadsheet.png │ ├── field-record-value.png │ ├── join.png │ ├── left-join-articles-journals.png │ ├── left-join-articles-journals_40.png │ └── normalisation.png └── files │ ├── LC03_SQL_CommandsCheatSheet.md │ ├── LC03_SQL_DataTypesCheatSheet.md │ ├── doaj-article-sample.db │ └── doaj-article-sample.db.sql ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner_profile.md └── site └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.16.10 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/AUTHORS -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/CITATION -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/01-introduction.md -------------------------------------------------------------------------------- /episodes/02-selecting-sorting-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/02-selecting-sorting-data.md -------------------------------------------------------------------------------- /episodes/03-filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/03-filtering.md -------------------------------------------------------------------------------- /episodes/04-ordering-commenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/04-ordering-commenting.md -------------------------------------------------------------------------------- /episodes/05-aggregating-calculating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/05-aggregating-calculating.md -------------------------------------------------------------------------------- /episodes/06-joins-aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/06-joins-aliases.md -------------------------------------------------------------------------------- /episodes/07-saving-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/07-saving-queries.md -------------------------------------------------------------------------------- /episodes/08-database-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/08-database-design.md -------------------------------------------------------------------------------- /episodes/09-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/09-create.md -------------------------------------------------------------------------------- /episodes/10-other-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/10-other-tools.md -------------------------------------------------------------------------------- /episodes/11-extra-challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/11-extra-challenges.md -------------------------------------------------------------------------------- /episodes/Bonus_GoodStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/Bonus_GoodStyle.md -------------------------------------------------------------------------------- /episodes/fig/articles-erd-v02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/articles-erd-v02.png -------------------------------------------------------------------------------- /episodes/fig/articles-erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/articles-erd.png -------------------------------------------------------------------------------- /episodes/fig/doaj-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/doaj-spreadsheet.png -------------------------------------------------------------------------------- /episodes/fig/field-record-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/field-record-value.png -------------------------------------------------------------------------------- /episodes/fig/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/join.png -------------------------------------------------------------------------------- /episodes/fig/left-join-articles-journals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/left-join-articles-journals.png -------------------------------------------------------------------------------- /episodes/fig/left-join-articles-journals_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/left-join-articles-journals_40.png -------------------------------------------------------------------------------- /episodes/fig/normalisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/fig/normalisation.png -------------------------------------------------------------------------------- /episodes/files/LC03_SQL_CommandsCheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/files/LC03_SQL_CommandsCheatSheet.md -------------------------------------------------------------------------------- /episodes/files/LC03_SQL_DataTypesCheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/files/LC03_SQL_DataTypesCheatSheet.md -------------------------------------------------------------------------------- /episodes/files/doaj-article-sample.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/files/doaj-article-sample.db -------------------------------------------------------------------------------- /episodes/files/doaj-article-sample.db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/episodes/files/doaj-article-sample.db.sql -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/learners/discuss.md -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/profiles/learner_profile.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-sql/HEAD/site/README.md --------------------------------------------------------------------------------