从 MySQL 中的列中删除 NOT NULL 限制
如何更改限制为 NOT NULL 的列以接受 NULL 值?
How can I alter a column whose restricted to NOT NULL to accept NULL values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何更改限制为 NOT NULL 的列以接受 NULL 值?
How can I alter a column whose restricted to NOT NULL to accept NULL values?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
只需修改它并放入旧类型并保留 not null
just modify it and put in the old type and leave off the not null
假设表为table_name,列为column_name,定义为varchar(200):
Assuming the table is table_name, column is column_name and its defined as varchar(200):
试试这个:
Try this:
您可以这样做:
ALTER TABLE tableName MODIFY columnName varchar2(100)
将
tableName
替换为您的表名称,将columnName
替换为您的列名称,同时varchar2(100)
为您用于此列的任何数据类型You can do this way:
ALTER TABLE tableName MODIFY columnName varchar2(100)
Replace
tableName
with your table name andcolumnName
with your column name and alsovarchar2(100)
to whatever data type you're using for this column