IN Access 2000 I want to compose an SQL statement to create a new table from an existing one. I want to select a datetime field from the existing table and insert it as a text string in the new table. Is there some kind of SQL conversion function I can use in the SELECT statement to achieve this?
Something like:
SELECT C2STR(datefld, "mm/dd/yy") AS txtdate INTO tblNew FROM tblOld;
Something like:
SELECT C2STR(datefld, "mm/dd/yy") AS txtdate INTO tblNew FROM tblOld;