Question: Why the query does not execute and rewrite so that it can be executed WITH users_2019 (id, name) AS (SELECT * FROM users WHERE join_date

Why the query does not execute and rewrite so that it can be executed 

WITH users_2019 (id, name) AS (SELECT *

FROM users

WHERE join_date BETWEEN '2019-01-01' AND '2019-12-31')

SELECT id,

name, count(licenses.access_code) AS numFROM users_2019

LEFT JOIN licenses ON licenses.user_id = id

GROUP BY name ORDER BY num DESC;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!