Joseph,
Can you explain the context? Generally, user variable names in a SQL batch are preceded by an @:
Certain system state values are preceded by @@. For example, to see what is currently set as the first weekday of the week:DECLARE @MyVariable varchar(100) SET @MyVariable = 'Joseph is pretty cool!'
If that's not what you mean, then...SELECT @@DATEFIRST AS FirstDayOfWeek![]()