Implement the following queries:
- Select the names and phones of all users;
- Select the name of the user with
id=10
; - Find how many users exist in the database;
- Select the names of the first 5 users in the database;
- Select the names of the last 3 users in the database;
- Sum all the ids in the
user
table; - Select all users and order them alphabetically by name;
- Find all tasks that include
SQL
either on the title or on the description; - Find the title of all tasks that the user
Maryrose
is responsible for; - Find how many tasks each user is responsible for;
- Find how many tasks with a
status=Done
each user is responsible for;