Count Records In Make Table Query?

L

Ladybird

How is an Incremental Number or a Count records assigned to a field when
using a
Make Table query?
 
D

Dan Artuso

Hi,
Does this help? Autoincrement is your incremental field:

CREATE TABLE Code3 (
ID AUTOINCREMENT,
Account TEXT(50),
Code MEMO,
Active Bit,
Hits int,
Rotation int
)
 
Top