Why is the GETDATE() an invalid identifier

前端 未结 4 1979
独厮守ぢ
独厮守ぢ 2020-12-10 13:28

Why is the GETDATE() an invalid identifier says Oracle Sql Developer tool when I debug this code:

CREATE OR REPLACE TRIGGER SPName
AFTER UPDATE
ON TableName          


        
4条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-10 13:34

    SYSDATE and GETDATE perform identically.

    SYSDATE is compatible with Oracle syntax, and GETDATE is compatible with Microsoft SQL Server syntax.

提交回复
热议问题