SQL基础操作_7_时间运算

7.8 时间运算

7.8.1 对时间列进行加减

需求:对EMP表里员工编号为7369的hiredate按照天、月、年各加.

解决方法:通过DATEADD函数来完成.

SQL Server:

SELECT empno,hiredate,DATEADD(DAY,1,hiredate) next_Day,
DATEADD(MONTH,1,hiredate) next_Month,
DATEADD(YEAR,1,hiredate) next_Year
FROM emp
WHERE empno = 7369

执行结果:

empno

hiredate

next_Day

next_Month

next_Month

7369

1980-12-17

1980-12-18

1981-01-17

1981-12-17


MySQL:

你可能感兴趣的:(SQL实战案例)