使用 SQL 将现有数据的数据类型从 Char 转换为 DateTime
我对 SQL Server 比较陌生,我正在尝试将大约 3000 条记录的数据类型从 Char
更新为 Datetime
,以便我可以使用 DATEDIFF 函数。我创建了一个实现转换的视图,但我认为我需要做的是更改原始表中的数据。
SELECT
CONVERT(datetime, CONVERT(char(8), TRANS_ACCOUNTINGDATE_ALLCAMPAIGNS_2010_ALLPROCESSINGACCOUNTS_ALL))
FROM Accounting;
我认为我需要做的是更改表并迭代执行转换的每一行。尝试使用 GUI 更改数据类型对我来说不起作用。
任何帮助将不胜感激。
谢谢
I am relatively new to SQL Server and I am trying to update the datatype of about 3000 records from a Char
to Datetime
so I can use the DATEDIFF function. I created a view that achieves the conversion but what I think I need to do is alter the data in the origin table.
SELECT
CONVERT(datetime, CONVERT(char(8), TRANS_ACCOUNTINGDATE_ALLCAMPAIGNS_2010_ALLPROCESSINGACCOUNTS_ALL))
FROM Accounting;
What I think I need to do is an alter table and iterate over each row performing the conversion. Trying to change the data type using the GUI is not working for me.
Any help would be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据类型是列的属性,而不仅仅是列内数据的属性。您不能将
datetime
数据放入char
字段 - 这就是数据类型的用途!您需要添加一个新字段并运行
UPDATE
语句以使用转换后的数据填充该字段。然后您可以删除原始字段并将新字段重命名为原始名称。The datatype is an attribute of the COLUMN, not just of the data inside the column. You can't put
datetime
data into achar
field - that's the purpose of data types!You need to add a new field and run an
UPDATE
statement to populate it with your converted data. Then you can drop the original field and rename your new one to the original name.