1. 学习
  2. /
  3. 课程
  4. /
  5. Writing Functions and Stored Procedures in SQL Server

Connected

练习

What was yesterday?

Create a function that returns yesterday's date.

说明

100 XP
  • Create a function named GetYesterday() with no input parameters that RETURNS a date data type.
  • Use GETDATE() and DATEADD() to calculate yesterday's date value.