Ini menunjukkan cara menghitung nilai untuk catatan dalam database berdasarkan nilai lain di catatan lain. Contoh ditulis dalam TSQL dan dapat dieksekusi di SQL Server. Anda perlu mengubah skrip untuk menggunakan tabel dan kolom Anda.
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
Semoga membantu.