使用公式创建 SQL Server 表

发布于 2024-12-04 10:59:19 字数 300 浏览 2 评论 0原文

我想以编程方式创建一个数据库MyDatabase

我想在该数据库中创建一个表 Table1,其中包含一些列 Columns1、Columns2、Columns3...

但我的一些专栏中有公式。当然,我的公式是基于其他列的。

因此,假设 Column1 具有基于 column2column3 值的公式。因此没有定义任何数据类型。

那么如何用公式创建表格呢?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

战皆罪 2024-12-11 10:59:19

如果您谈论的是计算列在 SQL Server 中,那么你只需像这样创建它们:

CREATE TABLE dbo.OrderLine
(OrderLineID INT IDENTITY(1,1) PRIMARY KEY,
 ProductID INT NOT NULL,   -- FK to Products table
 ItemPrice DECIMAL(16, 4),
 Quantity DECIMAL(10, 2),
 TotalPrice AS ItemPrice * Quantity   -- this is a computed column right here
)

If you're talking about computed columns in SQL Server, then you just create them like this:

CREATE TABLE dbo.OrderLine
(OrderLineID INT IDENTITY(1,1) PRIMARY KEY,
 ProductID INT NOT NULL,   -- FK to Products table
 ItemPrice DECIMAL(16, 4),
 Quantity DECIMAL(10, 2),
 TotalPrice AS ItemPrice * Quantity   -- this is a computed column right here
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文