Loading lesson path
Concept visual
Start at both ends
Return the integer part of a number:
SELECT Int(756.43) AS IntNum;The Int() function returns the integer part of a number.
If number is negative, this function returns the first negative integer less than or equal to number.
number )
Required. A numeric value
Return the integer part of the "Price" column:
SELECT Int(Price) AS IntNum FROM Products;❮ MS Access Functions