Open In App
Related Articles

Val() and Sum() Function in MS Access

Improve Article
Improve
Save Article
Save
Like Article
Like

1. Val() Function :
val() function returns the number found in the string. In this function, it takes a string as a parameter and it will return the number in the string.

Note : This function will stop reading when the first non-numeric character comes.

Syntax :

Val(string) 

Example-1 :

SELECT Val("234geeksforgeeks12") 
AS ValNum;

Output –

ValNum
234

Example-2 :

SELECT Val("345") 
AS ValNum;

Output –

ValNum
345



2. Sum() Function :
Sum() function returns the sum of the set of value. In this function, the set of value is passed as a parameter and it will return the sum.

Note : Null value will be ignored by this function.

Syntax :

Sum(expression) 

Demo Database for example :

Table name : student

Student_id marks
101 89
102 67
103 40

Example-1 :

SELECT Sum(marks) AS Total 
From student;

Output –

Total
196

Example-2 :

SELECT Sum(marks) AS Total 
From student Where marks>50;

Output –

Total
156
Unlock the Power of Placement Preparation!
Feeling lost in OS, DBMS, CN, SQL, and DSA chaos? Our Complete Interview Preparation Course is the ultimate guide to conquer placements. Trusted by over 100,000+ geeks, this course is your roadmap to interview triumph.
Ready to dive in? Explore our Free Demo Content and join our Complete Interview Preparation course.

Last Updated : 02 Sep, 2020
Like Article
Save Article
Similar Reads