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

Hi,

 

I'd like to run a Proc SQL step to link 3 databases.  

I'm trying to use the WHERE statement to filter results by subtracting a date one from table from the other.

 

Here's what it looks like right now:

 

proc sql; 
	connect to oracle;
	create table MRSA as select * from connection to oracle 
		(
			select distinct 
				c.MRN,
				a.account_num, a.discharge_date, 
				b.collect_date, a.admit_date
			from table1 a, 
				 table2 b,
				 table3 c
			where a.td_patient_id=b.td_patient_id and
			      b.td_patient_id=c.td_patient_id and
			      0 <= (datepart(b.collect_date) - datepart(a.admit_date)) <= 2 and
			      trunc(a.admit_date, 'DDD') >= '1-Jan-2012' and
			      trunc(a.admit_date, 'DDD') <= '1-Jan-2012' 
);
	disconnect from oracle; 
quit;

 

I'm receiving this error when running:

ORACLE prepare error
ORA-00933: SQL command not properly ended

 

Thanks for the help.

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Try replacing 

0 <= (trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2

with

(trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) >= 0 and
(trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2

 

then try using between 0 and 2

PG

View solution in original post

6 REPLIES 6
Reeza
Super User
Is that the correct usage of DATEPART() function in Oracle?
malmario
Calcite | Level 5

Ah good point.  I tried using the trunc function instead but got the same error Smiley Sad

 

proc sql; 
	connect to oracle;
	create table MRSA as select * from connection to oracle 
		(
			select distinct 
				c.MRN,
				a.account_num, a.discharge_date, 
				b.collect_date, a.admit_date
			from table1 a, 
				 table2 b,
				 table3 c
			where a.td_patient_id=b.td_patient_id and
			      b.td_patient_id=c.td_patient_id and
			      0 <= (trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2 and
			      trunc(a.admit_date, 'DDD') >= '1-Jan-2012' and
			      trunc(a.admit_date, 'DDD') <= '1-Jan-2012' 
);
	disconnect from oracle; 
quit;
FreelanceReinh
Jade | Level 19

To narrow down the cause of the error, I would try to remove more and more parts of the query (beginning with the WHERE clause) until the error disappears. Then reconstruct the original query in even smaller steps, until the error reappears. (If it doesn't reappear, you're lucky.) Of course, you have to make sure that each of the reduced queries still makes sense.


I think, at least one simplification could be done anyway: Aren't the last two lines of the WHERE clause equivalent to trunc(...)='...' or is Oracle's logic at odds with mathematics?

malmario
Calcite | Level 5

I QC'd and the cause of the error is this line:

0 <= (trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2

When I comment it out, the code runs.

 

For the last two lines, I changed it just for QC purposes.  The actual date range to pull the data will be over a couple of years.

 

 

FreelanceReinh
Jade | Level 19

Good. And, in general, Oracle can handle such chains of inequalities (as it is possible in SAS, except in SAS Macro language)?

Maybe you could try to use the BETWEEN condition trunc(...) - trunc(...) between 0 and 2 instead (if that is the correct syntax in Oracle). Or something like abs(trunc(...) - trunc(...) - 1) <= 1 (assuming there is an ABS function like the one in SAS).

PGStats
Opal | Level 21

Try replacing 

0 <= (trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2

with

(trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) >= 0 and
(trunc(b.collect_date, 'DDD') - trunc(a.admit_date, 'DDD')) <= 2

 

then try using between 0 and 2

PG

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 6 replies
  • 3557 views
  • 0 likes
  • 4 in conversation