开发者

Oracle: How to add 6 months to current date

In SQL Server开发者_开发百科 I can do this to add 6 months to the current date:

DateAdd(Month, 6, CURRENT_DATE)

What is the equivalent in Oracle?


The equivalent is:

ADD_MONTHS( CURRENT_DATE, 6 )
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜