MS Access Str() Function
ExampleGet your own SQL Server
Return a number as a string:
SELECT
Str(42) AS ConvertToString;
Try it Yourself »
Definition and Usage
The Str() function returns a number as a string.
Syntax
Str(number)
Parameter Values
Parameter | Description |
---|---|
number | Required. The number to convert to a string |
Technical Details
Works in: | From Access 2000 |
---|