यह दिखाता है कि अन्य रिकॉर्ड में अन्य मानों के आधार पर डेटाबेस में रिकॉर्ड के लिए मानों की गणना कैसे करें। उदाहरण TSQL में लिखा गया है और इसे SQL सर्वर पर निष्पादित किया जा सकता है। आपको अपनी टेबल और कॉलम का उपयोग करने के लिए स्क्रिप्ट को बदलना होगा।
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
आशा है कि यह मदद करता है।