CAST and CONVERT

mikeraut

New member
Local time
Today, 18:41
Joined
Jul 13, 2007
Messages
1
My query is...
SELECT tblExtensions.Extensions AS 'PIN', tblExtensions.Budget AS 'LIMIT',

tblExtensions.Extension is text
tblExtensions.Budget is number

I would like to convert the tblExtensions.Budget to a text/character filed for further manipulation.
In SQL it all works, how do I change this in MS Access?
 
You can use the CStr() function.

SELECT tblExtensions.Extension AS PIN, CStr(tblExtensions.Budget) AS LIMIT
.
 

Users who are viewing this thread

Back
Top Bottom