Skip to content

Commit

Permalink
Add the fourth assignment
Browse files Browse the repository at this point in the history
[refs #b7400db79a80]
  • Loading branch information
jfahrer committed May 5, 2018
1 parent f23c7ac commit b2acfa2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions developing/examples/webapp/assignment4.md
@@ -0,0 +1,14 @@
## Retrieve and list requests
* Get a list of requests
* Set a limit to 25
* Sort them by their id descending
* Display the requests
* Don't worry about styling

### Example SQL statement
```
SELECT ip, path, host, requested_at
FROM requests
ORDER BY id DESC
LIMIT 25;
```

0 comments on commit b2acfa2

Please sign in to comment.