Skip to content
Advertisement

Writing a Single Query w/ Multiple CTE Subqueries SQL/R

I have some data I would like to pull from a database, I’m using RStudio for my query. What I intend to do is write:

  1. The first CTE statement to pull all my necessary information.

  2. The second CTE statement will add two new columns for two row numbers, which are partitioned by different groups. Two additional columns will be added for Lead and Lag values.

  3. The third CTE will produce two more columns where the two columns use nested case_when statements to give me NewOpen and NewClosed dates.

What I have so far:

This code, however won’t run.

Advertisement

Answer

As mentioned, WITH is a statement to define CTEs to be used in a final query. Your query only contains CTE definitions but never actually use any in a final statement. Additionally, you can combine the first two CTEs since window functions can run at any level. Possibly the last CTE can serve as your final SELECT statement.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement