Write one SQL statement to answer each question. Do not use views or temporary tables to answer the questions.
SQL Script address: [link]
Provide a list of the titles of all Steps that have been taken by both Alice (id = 1) and Bob (id = 2), along with the combined number of times they have taken the Step.
user_follow:
- id INT
Wstep_taken:
- following_user_id INT
- followed_user_id INT
- id INT
- user_id INT
- step_id INT
- when_started TIMESTAMP
user:
- weight INT
- id INT
- theme_id INT
- first_name VARCHAR(128)
- last_name VARCHAR(128)
- DOB DATE
- when_finished TIMESTAMP
- name VARCHAR(100)
- rating TINYINT
user_interest:
- user_id INT
- interest_id INT
step_theme:
- step_id INT
- theme_id INT
step:
- id INT
- theme_id INT
- interest_id INT
- step_id INT
- title VARCHAR(50)
- name VARCHAR(100)