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?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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
)
link|improve this answer
awesome, i was looking for same. thanks lot – rapsalands Sep 15 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.