SQL Server:无法将显式值插入时间戳列

编程入门 行业动态 更新时间:2024-10-23 01:52:19
本文介绍了SQL Server:无法将显式值插入时间戳列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

使用此语句时

create table demo ( ts timestamp ) insert into demo select current_timestamp

我收到以下错误:

无法将明确的值插入到timestamp列中.将INSERT与列列表一起使用以排除timestamp列,或在timestamp列中插入DEFAULT

Cannot insert an explicit value into a timestamp column. Use INSERT with a column list to exclude the timestamp column, or insert a DEFAULT into the timestamp column

如何将当前时间插入timestamp列?

How do I insert the current time to a timestamp column?

推荐答案

根据MSDN ,timestamp

是公开自动生成的唯一二进制数据的数据类型 数据库中的数字.时间戳通常用作一种机制 用于版本标记表行.存储大小为8个字节.这 时间戳数据类型只是一个递增的数字,而不是 保存日期或时间.要记录日期或时间,请使用datetime 数据类型.

Is a data type that exposes automatically generated, unique binary numbers within a database. timestamp is generally used as a mechanism for version-stamping table rows. The storage size is 8 bytes. The timestamp data type is just an incrementing number and does not preserve a date or a time. To record a date or time, use a datetime data type.

您可能正在寻找datetime数据类型.

You're probably looking for the datetime data type instead.

更多推荐

SQL Server:无法将显式值插入时间戳列

本文发布于:2023-11-16 01:35:31,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1599803.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:时间   SQL   Server   将显式值

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!