これは、他のレコードの他の値に基づいて、データベースのレコードの値を計算する方法を示しています。この例は TSQL で記述されており、SQL Server 上で実行できます。テーブルと列を使用するには、スクリプトを変更する必要があります。
DECLARE @total dec(12,2), @num int --Variable declaration
SET @total = (SELECT SUM(Salary) FROM Employee) --Capture sum of employee salaries
SET @num = (SELECT COUNT(ID) FROM Employee) --Capture the number of employees
SELECT @total 'Total', --calculate values for a record in a database based off of other values in other records
@num 'Number of employees',
@total/@num 'Average'
INTO
dbo.AverageSalary
これがお役に立てば幸いです。