BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Yen
Calcite | Level 5 Yen
Calcite | Level 5

%let mon_tab=%sysfunc(intnx(month, %sysfunc(today()), -13), YYMMN.);

%put &mon_tab.;

%let dt1 = %sysfunc(intnx(month,%sysfunc(today()),-13,beg),MMDDYYD10.);

%let dt2 = %sysfunc(intnx(month,%sysfunc(today()),-13,end),MMDDYYD10.);

%put "&dt1"d. "&dt2"d.;

proc sql;

connect to teradata(user="&username." password="&dbpass" tdpid=aprtera mode=teradata);

create table test as

select * from connection to teradata(

(select a.col1

,sum(b.col2) as tran_sum

from lib1.table1 a right join

(select b.col1, sum(b.col2) as sum_col2 from lib2.table2 b

where b.col3 between "&dt1" and "&dt2" ) c on a.col1=b.col1

group by a.col1

order by a.col1 asc));

disconnect from teradata;

quit;

 

ERROR: Teradata prepare: Column 02-01-2016 not found in lib2.b.

 

Question:

How should those date ranges need to be formatted to avoid error? I am new to teradata database.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Peter_C
Rhodochrosite | Level 12
beware different assumptions in teradata sql, where strings in double quotes are assumed to be column names, like name literals in SAS when validvarnam= any

View solution in original post

1 REPLY 1
Peter_C
Rhodochrosite | Level 12
beware different assumptions in teradata sql, where strings in double quotes are assumed to be column names, like name literals in SAS when validvarnam= any

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 851 views
  • 0 likes
  • 2 in conversation