SQL2000中的查询

发布于 2024-08-30 13:04:38 字数 20 浏览 3 评论 0原文

如何更改表中列的数据类型?

How to alter the datatype of a column in a table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

平定天下 2024-09-06 13:04:38
CREATE TABLE dbo.MyTable (column_a INT );
GO
INSERT INTO dbo.MyTable  (column_a) VALUES (10);
GO
ALTER TABLE dbo.MyTable  ALTER COLUMN column_a DECIMAL (5, 2);
GO
DROP TABLE dbo.MyTable;
GO
CREATE TABLE dbo.MyTable (column_a INT );
GO
INSERT INTO dbo.MyTable  (column_a) VALUES (10);
GO
ALTER TABLE dbo.MyTable  ALTER COLUMN column_a DECIMAL (5, 2);
GO
DROP TABLE dbo.MyTable;
GO
岁月流歌 2024-09-06 13:04:38

更改表 yourtable 更改列 yourcolumnname yourdatatype;

仅当 SQL 可以将旧值转换为具有新数据类型的新值时,此方法才有效。如果失败,您将必须创建一个新列,以某种方式迁移数据,然后删除旧列。

alter table yourtable alter column yourcolumnname yourdatatype;

This only works if SQL can cast the old values to the new values with the new datatype. If this fails, you will have to create a new column, migrate the data some way, and drop the old column.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文