Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Bokangmaela
Helper I
Helper I

ODBC SQL Statement(AspenTech SQLplus)

Good day,

 

I am currently experiencing an issue querying MTD data using the odbc(AspenTech SQLplus) connection. 

 

My SQL statement looks like the following :

SELECT TS, Name, Value FROM History WHERE name = 'name' AND TS >= DATEADD(day, -30, GETDATE()) AND Period = '00:00:20';

 

When I run the command I get the following error:

ODBC: ERROR [HY000] Expecting expression, found reserved word "DAY"

 

I am not sure where I am going wrong, please advice.

 

Kind Regards

2 REPLIES 2
swikritee_p
Resolver II
Resolver II

@Bokangmaela , Try if the SQL given below, can help

 

SELECT TS, Name, Value 
FROM History 
WHERE Name = 'name' 
  AND TS >= (CURRENT_TIMESTAMP - INTERVAL '30' DAY)
  AND Period = '00:00:20';

@swikritee_p , Thanks for your reponse 

 

When I run the query I get the following error :

"ODBC: ERROR [HY000] Expecting expression, found reserved word "INTERVAL""

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors