Many ways to do this, you can use DATENAME and check for the actual strings ‘Saturday’ or ‘Sunday’
SELECT DATENAME(DW, GETDATE())
Or use the day of the week and check for 1 (Sunday) or 7 (Saturday)
SELECT DATEPART(DW, GETDATE())
Many ways to do this, you can use DATENAME and check for the actual strings ‘Saturday’ or ‘Sunday’
SELECT DATENAME(DW, GETDATE())
Or use the day of the week and check for 1 (Sunday) or 7 (Saturday)
SELECT DATEPART(DW, GETDATE())