sql server 2008 - 添加约束
我正在尝试向 char(1)
数据类型添加约束,
我希望用户只能输入 Y
或 N
或 n
或 Y
我在 CHECK CONSTRAINT EXPRESSION
窗口中单击了检查约束,我应该输入什么?
i am trying to add a constraint to a datatype of char(1)
i would like the user to only be able to enter Y
or N
or n
or Y
i clicked on check constraint in the CHECK CONSTRAINT EXPRESSION
window what am i supposed to enter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好手动进行此类更改,而不是通过 GUI。
编辑:GUI 可以发出次优的 DDL,并且只需很少的练习,您就可以像使用 GUI 一样高效地使用手动脚本,并且您确切地知道发生了什么。此外,您确实希望将所有 DDL 存储在版本控制中,包括用于更改的脚本。
It is always better to make such changes manually, not via GUI.
Edit: GUI can issue suboptimal DDL, and with little practice you can be just as efficient with manual scripts as with GUI, and you know exactly what is happening. Also you really want to store all your DDL in version control, including the script for changes.
使用 ALTER TABLE 语句:
Using an ALTER TABLE statement: