SQL2000中的查询
如何更改表中列的数据类型?
How to alter the datatype of a column in a table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何更改表中列的数据类型?
How to alter the datatype of a column in a table?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
更改表 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.