Fix README syntax errors

This commit is contained in:
Joon Park 2018-03-08 19:03:37 -06:00 committed by GitHub
parent 9692bd519d
commit 0c7189a380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
#SQL Murder Mystery
# SQL Murder Mystery
There's been a Murder in SQL City! The SQL Murder Mystery is designed to be both a self-directed lesson to learn SQL concepts and commands and a fun game for experienced SQL users to solve an intriguing crime.
##What You Need
## What You Need
* **sql-murder-mystery.db**: This SQLite database file contains all the data that you will be working with.
* **prompt**: Depending on your experience level with SQL, find the prompt in either the prompt_experienced file or the prompt_beginner file.
* **cheatsheet**: This is a crash course on SQL concepts and commands.
* **a SQLite environment of your choice**: For beginners, we recommend using the [SQLiteStudio](https://sqlitestudio.pl/index.rvt "SQLiteStudio"), which is a good graphical interface to use to inspect your data and write queries.
##Getting Started
## Getting Started
* **For experienced SQL users**: read the prompt_experienced file, then download the sql-murder-mystery.db file and use a SQL environment of your choice to solve the mystery. You can use the cheatsheet to refresh your memory on SQL. Try to complete the activity all within your SQL environment (without writing down notes)!
* **For SQL beginners**: start with the cheatsheet, read the prompt_beginner file, then download the sql-murder-mystery.db file and load it in [SQLiteStudio](https://sqlitestudio.pl/index.rvt "SQLiteStudio"). If you get stuck at any point, feel free to refer back to the cheatsheet.
##Checking the Solution
## Checking the Solution
Write the following queries in your SQL environment to check whether you've found the right murderer:
`INSERT INTO solution VALUES (1, "Insert the name of the person you found here");`
@ -21,17 +21,10 @@ Write the following queries in your SQL environment to check whether you've foun
`SELECT value FROM solution;`
##Authors
## Authors
Joon Park
Cathy He
##Inspiration
## Inspiration
This murder mystery was inspired by [a crime in the neighboring Terminal City](https://github.com/veltman/clmystery "command-line murder mystery").