CST363 - Week 2

1. I couldn't think of an example, so I just searched for one. For instance, finding salary ranges that include all employees and their respective salary ranges. 

SELECT employees.ID, employees.name, employees.salary FROM employees JOIN salaries ON employees.salary BETWEEN salaries.min_salary AND salaries.max_salary;

2. I find it easy to learn and improve with practice, though I consider some commands, like subqueries and having, to be challenging as I was initially unfamiliar with them.


Comments

Popular posts from this blog

Module 2:

Module 4:

Module 5 - 338