Re: Use GUID instead of AutoInc



AFAIK GUID is valid data type name for Access, i.e something like this
should work:
create table [test](
[id] guid primary key
)


.