diff --git a/assignment2/assignment2.html b/assignment2/assignment2.html index f79f2bc4..aa2ac492 100644 --- a/assignment2/assignment2.html +++ b/assignment2/assignment2.html @@ -97,7 +97,7 @@
What to turn in: Run your query against your local database and determine the number of records returned. Save that value in a .txt file . You can name the file anything. On the assignment page, upload the file as your answer.
(e) big documents Write a SQL statement to find all documents that have -more than 300 total terms, including duplicate terms. (Hint: You can use the HAVING clause, or you can use a nested query. Another hint: Remember that the count column contains the term frequencies, and you want to consider duplicates.) (docid, term_count) +more than 300 different terms. (Hint: You can use the HAVING clause, or you can use a nested query. Another hint: Remember that the count column contains the term frequencies, and you want to consider duplicates.) (docid, term_count)
What to turn in: Run your query against your local database and determine the number of records returned. Save that value in a .txt file . You can name the file anything. On the assignment page, upload the file as your answer.
@@ -283,4 +283,4 @@