BookmarkSubscribeRSS Feed
DebG
Obsidian | Level 7

proc fedsql now uses SQL:1999 standards and with that I was hoping to see CTE added.  It is not clear to me if Common Table Expression (CTE) is supported, but I am unable to execute CTE outside of any database.  CTE will let me break down my query into bite size pieces and reuse those pieces.  Expected syntax below for clarity.

 

Does SAS support CTE, will it be coming soon, or have I missed it?

 

proc fedsql;

  create table want as

  (with tmp as (select * from somewhere)

  ,tmp2 as (select * from somewhere_else)

 select a.id, b.var

 from tmp a

 left join tmp2 b

on a.id=b.id

);

quit;

2 REPLIES 2
DebG
Obsidian | Level 7

Appreciated Kirk.  CTE can be completed in passthrough in all databases which are SQL:1999 compliant.  SAS is the the only exception I have found.  I'm specifically interested in completed CTE in SAS datasets.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1132 views
  • 1 like
  • 2 in conversation