Skip to content

Commit 6916d93

Browse files
committed
question: Fix Typo In Distinct Starter SQL Query
A wrong table was used in the starter SQL query for the first exercise testing one's knowledge using the "Distinct" key word. Replace the table name employee with the table name titles.
1 parent 6a05fac commit 6916d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQL Deep Dive/Distinct/questions.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Question: What unique titles do we have?
55
*/
66

7-
SELECT * FROM employees;
7+
SELECT * FROM titles;
88

99

1010
/*

0 commit comments

Comments
 (0)