Return day from Date in Redshift

63 views Asked by At

Is there a way/function in redshift that returns name of the day from date? For example, if my column is 07/19/2023, it should return Wednesday

1

There are 1 answers

0
user20391531 On

Found a function if anyone is interested:

select to_char(DATE '2023-07-19', 'DAY')