I have following column:
Time: 2019-01-10 07:31:27.000
...
Now I want the weekday for each row.
So for example for the first row I want as a result Sunday
I have following column:
Time: 2019-01-10 07:31:27.000
...
Now I want the weekday for each row.
So for example for the first row I want as a result Sunday
I recommend you to try this (MS SQL):
select datename(weekday,[yourDateTimeColumn]) from [YourTable]