C
Convert_Cast
I would like to know whether there is a built-in function to convert a text
field (fieldsize =255) to another text field (fieldsize = 100) in the Access
Query.
For example, in the following example,
create table foo
(
long_text text(255)
)
How can I write a query in Access to select record from foo table and
convert the long_text filed to text(100). SQL Server has convert() and Cast()
function to achive that. Is there any equivalent functions available in
Access.
field (fieldsize =255) to another text field (fieldsize = 100) in the Access
Query.
For example, in the following example,
create table foo
(
long_text text(255)
)
How can I write a query in Access to select record from foo table and
convert the long_text filed to text(100). SQL Server has convert() and Cast()
function to achive that. Is there any equivalent functions available in
Access.