From 95d5d2b679b1c201019672c39f0581a363ca826d Mon Sep 17 00:00:00 2001 From: RonHLEb <92889306+RonHLEb@users.noreply.github.com> Date: Wed, 20 Oct 2021 17:16:10 -0400 Subject: [PATCH] Added DOI column in the "more information" example In the "If we want more information" example, added a new column to the SQL code so that the student would see additional information. --- _episodes/02-selecting-sorting-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/02-selecting-sorting-data.md b/_episodes/02-selecting-sorting-data.md index 0e8762ed..2bcec86d 100644 --- a/_episodes/02-selecting-sorting-data.md +++ b/_episodes/02-selecting-sorting-data.md @@ -53,7 +53,7 @@ FROM articles; If we want more information, we can add a new column to the list of fields right after `SELECT`: ~~~ -SELECT Title, Authors, ISSNs, Year +SELECT Title, Authors, ISSNs, Year, DOI FROM articles; ~~~ {: .sql}