Please reena,can you explain to me what the meaning of the line in red of table below of AdventureWorks database :
CREATE TABLE SalesLT.SalesOrderDetail(
SalesOrderID int NOT NULL,
SalesOrderDetailID int IDENTITY(1,1) NOT NULL,
OrderQty smallint NOT NULL,
ProductID int NOT NULL,
UnitPrice money NOT NULL,
UnitPriceDiscount money NOT NULL,
LineTotal AS (isnull((UnitPrice*((1.0)-UnitPriceDiscount))*OrderQty,(0.0))),
rowguid uniqueidentifier ROWGUIDCOL NOT NULL,
ModifiedDate datetime NOT NULL
)