get the day of the week from datetime sql server code example
Example: get week day from date in sql
SELECT TO_CHAR(your_table.date_colunm, 'DAY')
FROM your_table;
SELECT TO_CHAR(your_table.date_colunm, 'DAY')
FROM your_table;