Can I use the same field name in more than one table? (Though possible, perhaps it's not advisable?)
For example, let's say that there are 2 tables in the db: one named Staff and the other named Client Contact
The Staff table lists employees, so the fields might include:
First Name
Last Name
Street Address
City
State
Zip Code
The Client Contact table would likely contain similar information (except that the info would relate to the client contact).
Would it be advisable to create unique field names (which would require more characters)?
Example of unique field names:
Staff Fname in the Staff table
Client Fname in the Client Contact table
etc.
(I also anticipate that I might have many "Date" fields in different tables; perhaps I need to come up with unique field names for all these date fields, as well).
For example, let's say that there are 2 tables in the db: one named Staff and the other named Client Contact
The Staff table lists employees, so the fields might include:
First Name
Last Name
Street Address
City
State
Zip Code
The Client Contact table would likely contain similar information (except that the info would relate to the client contact).
Would it be advisable to create unique field names (which would require more characters)?
Example of unique field names:
Staff Fname in the Staff table
Client Fname in the Client Contact table
etc.
(I also anticipate that I might have many "Date" fields in different tables; perhaps I need to come up with unique field names for all these date fields, as well).
Last edited: