Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
昨日の18:00:00の日付を取得しようとしています。
私はこれを試しました:
DECLARE @YesturdayDate datetime = DATEADD(D, 0, DATEDIFF(D, 0, GETDATE()-1)); select dateadd(h,18,@YesturdayDate)
しかし、selectステートメントを実行するとエラーが発生します。
「スカラー変数「@YesturdayDate」を宣言する必要があります。」
何故ですか?
ありがとう。