bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Fix() Function

Concept visual

MS Access Fix() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Return the integer part of a number:

SELECT Fix(756.43) AS FixNum;

Definition and Usage

The Fix() function returns the integer part of a number.

Syntax

Fix(

number )

Parameter Values

Parameter

Description number

Required. A numeric value

Technical Details

Works in:

From Access 2000

More Examples

Example

Return the integer part of the "Price" column:

SELECT Fix(Price) AS FixNum FROM Products;

Previous

❮ MS Access Functions

Next

Previous

MS Access Exp() Function

Next

MS Access Format() Function