Mysql – Error while running SQL query, window functions
I am trying to find the YoY growth of the users and trying to write a mysql query using window functions. Below is my query to find the lag : select substr(create_time, 1, 4) as date, count(*) as count, lag(count(*),…