MS Access Str() Function
Example
Return a string representation of a number:
SELECT
Str(42) AS ConvertToString;
Try it Yourself »
Definition and Usage
The Str() function returns a string representation of a number.
Syntax
Str(number)
Parameter Values
Parameter | Description |
---|---|
number | Required. The numeric value to convert to a string |
Technical Details
Works in: | Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000 |
---|