Skip to content

Commit

Permalink
Merge pull request swcarpentry#46 from wking/fix-since-1930-typo
Browse files Browse the repository at this point in the history
03-filter.md: Fix 'since 1930' -> 'before 1930' typo
  • Loading branch information
mckays630 committed Mar 26, 2015
2 parents 9eb1ce7 + e8c7efc commit 43dadb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 03-filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ SELECT ident FROM Visited WHERE site="DR-1";

We can use many other Boolean operators to filter our data.
For example,
we can ask for all information from the DR-1 site collected since 1930:
we can ask for all information from the DR-1 site collected before 1930:

~~~ {.sql}
SELECT * FROM Visited WHERE (site="DR-1") AND (dated<="1930-00-00");
SELECT * FROM Visited WHERE (site="DR-1") AND (dated<"1930-00-00");
~~~

|ident|site|dated |
Expand Down

0 comments on commit 43dadb4

Please sign in to comment.