From 903cc889f84b1c68d6aec66842b74a64c1245de8 Mon Sep 17 00:00:00 2001 From: ieahleen Date: Fri, 1 Jan 2021 09:45:38 +0000 Subject: [PATCH] added language to code fences for python for everybody --- .../python-for-everybody/make-a-relational-database.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/make-a-relational-database.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/make-a-relational-database.md index 6e8f5c5ee5..226c34c239 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/make-a-relational-database.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/make-a-relational-database.md @@ -13,31 +13,31 @@ What SQL command would you use to retrieve all users that have the email address ## --answers-- -``` +```sql SELECT Users WHERE email="quincy@freecodecamp.org" ``` --- -``` +```sql SELECT Users WHERE email IS "quincy@freecodecamp.org" ``` --- -``` +```sql SELECT ALL Users WHERE email="quincy@freecodecamp.org" ``` --- -``` +```sql SELECT * FROM Users WHERE email IS "quincy@freecodecamp.org" ``` --- -``` +```sql SELECT * FROM Users WHERE email="quincy@freecodecamp.org" ```