Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Unable to use teradata function 'current_date' i n alteryx

swapsingh2712
8 - Asteroid

Hello All,

 

I'm writing a teradata query in alteryx but for some reason I'm not able to use the current_date keyword. The same query is working fine in teradata sql editor. Could you please advise. Here's the error I'm receiving.

 

Regards,

Swapsingh

2 REPLIES 2
jdminton
12 - Quasar

I'm not familiar with Teradata SQL, but if it's at all similar to any other SQL, you haven't identified where to find the information (i.e. a table)

 

Looking into this, it appears that there may just need to be parentheses at the end. Have you tried that?

SELECT CURRENT_DATE()

binuacs
20 - Arcturus

@swapsingh2712 

try 
SELECT CURRENT_DATE;
or
SELECT CURRENT_DATE FROM sys_calendar.calendar WHERE calendar_date = CURRENT_DATE;
Labels