Make Query - Defining fields

Torsan

New member
Local time
Today, 11:42
Joined
Jul 15, 2005
Messages
7
When I run this query, the fields in the new table contains 253 characters. How do I specify in the SQL command that the field Carg2 and Carg3 will contain 3 charachters ?

SELECT dbo_allesc.AccReport, Left([AccReport],2) AS Carg2, Left([AccReport],3) AS Carg3,.........................
INTO regTabell

Thank you, Tor
 
After you create the table – change the field size.

Then instead of using a make table query – use a delete query followed by an append query.
 
Thank you. Again MS Access proves that MS Fox Pro is way better.
 

Users who are viewing this thread

Back
Top Bottom