Skip to content

Commit 9c84e85

Browse files
committed
Merge pull request datacarpentry#62 from metajinomics/patch-1
update typo in the query
2 parents 27ffb58 + ab98273 commit 9c84e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03-sql-joins-aliases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ clearer we can use aliases to assign new names to things in the query.
6363

6464
We can alias both table names:
6565

66-
SELECT surv.year, surv.month, surv.day, surv.genus, sp.species
66+
SELECT surv.year, surv.month, surv.day, sp.genus, sp.species
6767
FROM surveys AS surv JOIN species AS sp
6868
ON surv.species_id = sp.species_id
6969

0 commit comments

Comments
 (0)