Loading lesson path
Concept visual
Start at both ends
Return the integer part of a number:
SELECT Fix(756.43) AS FixNum;The Fix() function returns the integer part of a number.
number )
Required. A numeric value
Return the integer part of the "Price" column:
SELECT Fix(Price) AS FixNum FROM Products;❮ MS Access Functions