条件插入触发器
每当将一行插入到 Course_Enrollment 中并且在插入语句中未明确给出 enrollment_date 值(即缺失)时, 那么 CURRENT_TIMESTAMP 值将用于插入行的 Enrollment_date 列。
TSQL 2000 可以实现这一点吗?如果是这样,怎么办?
Whenever a row is inserted into Course_Enrollment and the enrollment_date value is not explicitly given in the insertion statement (i.e., it is missing),
then the CURRENT_TIMESTAMP value is used for the Enrollment_date column of the inserted row.
Is this possible with TSQL 2000? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对
getdate()
的 CURRENT_TIMESTAMP 列使用默认值。Use a default value for the CURRENT_TIMESTAMP column of
getdate()
.