Skip to content

Commit 487ba21

Browse files
authoredMar 10, 2025
fix: error in iteration 2, task 12
The column "used_by" is defined as an integer (trying to store the string 'unknown' would give an error)
1 parent 60a3da6 commit 487ba21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ You already know how this goes, so let's start running some queries on our datab
164164
9. Get the **total** number of `stars` of **all the libraries**. <br> <br>
165165
10. Get the **average** number of `contributors` for **all the libraries**. <br> <br>
166166
11. Update the `licence` field of the **libriaries without a licence** to store `'unknown'` instead of `NULL`. <br> <br>
167-
12. Update the `used_by` field of the **libraries that don't have it specified** to store `'unknown'` instead of `NULL`. <br> <br>
167+
12. Update the `used_by` field of the **libraries that don't have it specified** to store the number zero (`0`), instead of `NULL`. <br> <br>
168168
13. Update all the records to **capitalize the string** provided in the `main_technology` field. <br> <br>
169169
14. Delete all the records where `licence` is `'unknown'`. <br> <br>
170170
15. Delete all the records with **10000 or less** `stars`. <br> <br>

0 commit comments

Comments
 (0)