This community-built FAQ covers the “What is Churn?” exercise from the lesson “Calculating Churn”.
Paths and Courses
This exercise can be found in the following Codecademy content:
FAQs on the exercise What is Churn?
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
SELECT 100./2000; – will give you 0.05 as a result
SELECT 100/2000; – without the dot the result is 0
You can calculate mathematical values using SELECT by using the common mathematical operators such as addition (+), subtraction (-), multiplication (*), division (/).
Unfortunately I’ve failed to find any official documentation about this at the SQLite website.
However you can try it from your sqlite command prompt.