I am working with a practice SQlite3 table (gradebook) to learn more about them and it is set up with the following 3 columns
gradebook
* student_id
* student_name
* test_score
I am trying to write a command that can help me find the % of students who scored over a certain score (0-100) on an exam and have a certain last name.
I was trying to follow this link,
How to calculate percentage with a SQL statement
but I don't have enough understanding to generalize the equation. Was looking for some guidance?