I am connecting to an oracle database via alteryx. Working to convert a DateTime format to Date from this oracle db in a formula in-db tool. Currently the field is of datetime with YYYY-MM-DD 00:00:00. Basically I just want it with the date information, no time. So far I've have tried TRUNC(datefield, 'YYYY/MM/DD') and CAST(datefield AS DATE) , however my efforts are not working. How could I accomplish this? Thank you for the help!