From bfafc32c9a6ed4b83a9c6eaa63a960711d9a7d95 Mon Sep 17 00:00:00 2001 From: Chris Bay Date: Fri, 25 Feb 2022 12:18:17 -0600 Subject: [PATCH] Simplifies task 4 SQL query Simplifies that SQL query students are prompted to write for task 4. This makes it much easier to grade with autograder tests. This change depends on another PR from the starter code template repository, which I'll link below once it has been created. --- src/assignments/tech-jobs-persistent.rst | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/assignments/tech-jobs-persistent.rst b/src/assignments/tech-jobs-persistent.rst index 1513f788..bfc5847f 100644 --- a/src/assignments/tech-jobs-persistent.rst +++ b/src/assignments/tech-jobs-persistent.rst @@ -436,15 +436,10 @@ Test It with SQL Run your application and make sure you can create a new job with an employer and several skills. You should now also have restored full list and search capabilities. -#. **SQL TASK:** In ``queries.sql`` under "Part 4", write a query to return a list of all fields of all skills that are attached to jobs in alphabetical order by name. +#. **SQL TASK:** In ``queries.sql`` under "Part 4", write a query to return the names of all skills that are attached to jobs in alphabetical order. If a skill does not have a job listed, it should not be included in the results of this query. - .. admonition:: Tip - - You will need to make use of "is not null". - - When everything works, you’re done! Congrats! Sanity Check