Skip to content
Snippets Groups Projects
Commit 13ac1f4e authored by Peter J. Keleher's avatar Peter J. Keleher
Browse files

auto

parent 2f0e3276
No related branches found
No related tags found
No related merge requests found
...@@ -43,8 +43,13 @@ You don't have to use the "hints" if you don't want to; there might ...@@ -43,8 +43,13 @@ You don't have to use the "hints" if you don't want to; there might
be simpler ways to solve the questions. be simpler ways to solve the questions.
### Testing using SQLTesting.py ### Testing using SQLTesting.py
Build (`docker build --rm -t 424 .`) and run (`docker run -it -v $(pwd):/424 424`) Build and run a container as before:
the container as before, then `cd /424` (inside the container). - bash: `docker run -it -v $(pwd):/424 424`
- tcsh: ``docker run -it -v `pwd`:/424 424``.
- PowerShell: `docker run -it -v "${PWD}:/424" 424`. You might have to install WSL 2, and for
this powershell will have to be running as administrator as well.
- windows CMD: `docker run -it -v "%cd%:/424" 424`. The above caveats might apply as well.
and you should have your files in `/424`.
You will be writing a series of queries to implement the prompts in You will be writing a series of queries to implement the prompts in
`queries.py`. Your answers (i.e., SQL queries) should be added to `queries.py`. Your answers (i.e., SQL queries) should be added to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment