使用公式创建 SQL Server 表
我想以编程方式创建一个数据库MyDatabase
。
我想在该数据库中创建一个表 Table1
,其中包含一些列 Columns1、Columns2、Columns3...
。
但我的一些专栏中有公式。当然,我的公式是基于其他列的。
因此,假设 Column1
具有基于 column2
和 column3
值的公式。因此没有定义任何数据类型。
那么如何用公式创建表格呢?
I want to create a database MyDatabase
programmatically.
I want to create a table Table1
in that database, with some columns Columns1, Columns2, Columns3...
.
But some of my columns are having formula in it. And of course, my formula is based on other columns.
So suppose Column1
is having formula based on values of column2
and column3
. And therefore not having any datatype defined.
So how to create tables with formula?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您谈论的是计算列在 SQL Server 中,那么你只需像这样创建它们:
If you're talking about computed columns in SQL Server, then you just create them like this: