Skip to content

Latest commit

 

History

History
101 lines (51 loc) · 1.98 KB

queries.md

File metadata and controls

101 lines (51 loc) · 1.98 KB

logo_ironhack_blue 7

Answers

Iteration 2

1. Add the solid and chartjs libraries as new rows to the jslibraries table.


2. Get all the fields of the library that was released earliest (first).


3. Get all the fields of the library that was released most recently (last).


4. All the libraries released before 2015.


5. Get the name and the release_date of the libraries without a licence.


6. Get the name and the stars from all CSS Framework libraries.


7. Get the name of the libraries where the main technology is Typescript.


8. Get the name and the type of all the libraries with more than 1000 contributors.


9. Get the total number of stars of all the libraries.


10. Get the average number of contributors for all the libraries.


11. Update the licence field of the libriaries without a licence to store 'unknown' instead of NULL.


12. Update the used_by field of the libraries that don't have this information to store 'unknown' instead of NULL.


13. Update all the records to capitalize the string provided in the main_technology field.


14. Delete all the records where licence is 'unknown'.


15. Delete all the records with 10000 or less stars.


16. Delete all the records with less than 100 releases.