Limiting the table?

  • Thread starter Thread starter Mario
  • Start date Start date
I did this by setting the validation rule property of my
primary key field to =1.

By definition, my primary key MUST be unique. By design,
it MUST be equal to one. Voila! Only one record possible
in the table. Good luck.
 
How do you limit the table so it could hold only 1 or 2 records?

One good way is to have an integer Primary Key, with a validation rule
of

=1

to limit it to one record; or

IN (1, 2)

to limit it to two.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top