Trigger based on sysdate

前端 未结 2 1553
旧时难觅i
旧时难觅i 2021-01-24 09:50

I have a table

Table Schema:

CREATE TABLE CHARGES 
(
    total NUMBER(30),
    admitdate TIMESTAMP(6),
    dischargedate TIMESTAMP(30)
)
<
2条回答
  •  终归单人心
    2021-01-24 10:01

    To run a piece of code on a specific time, you can use jobs. Triggers are there only to respond to table changes. If the server is down (which it should hardly ever be), the job can be run at a later time.

提交回复
热议问题