如何在 SQL Server Compact 中添加默认值?
我需要在 SqlServer Compact 中添加默认值列...我是这个 SQL Server Compact 的新手,所以请有人告诉我这个问题的解决方案...
提前致谢
I need to add default value column in SqlServer Compact....i am new to this SQL server compact so Plz anyone tell me the Solution of this....
Thanks In Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
声明列时使用
DEFAULT
约束。请参阅这篇 MSDN 文章。
在上面的示例中,
myCol
列的值默认为 20。You use the
DEFAULT
constraint when declaring the column.See this MSDN article.
In the example above, the values for column
myCol
will default to 20.https://technet.microsoft.com/ru- ru/library/ms174123(v=sql.110).aspx
https://technet.microsoft.com/ru-ru/library/ms174123(v=sql.110).aspx