answersLogoWhite

0

A field is the name given to the column or attribute. A field name cannot be empty and also it cannot be an identifier. Example in a table stud there are fields like Fname, Lname, Rollno etc

A fully qualified field name in simple terms is the table name in which the field resides and the field name. As an example we have a table called Customers and a field FirstName Within a query you cold point to or declare the field name as simply FirstName. Now if you are joining a couple of tables and each has the field name FirstName you would need to fully qualify the field so that the database would know from which table you wanted the FirstName data. So in this example lets say we have the tables Customers and Employee. Within the Customers table we have a EmployeeID field that ties an employee (maybe the employee that entered the customer) to the customer. Now in a query you want to display the Customer's first name. In this case you would need to specify the table name WITH the field name in order to present a result. Example: Customers.FirstName or Employee.FirstName You could further qualify the field by including the database names as well. This is NOT common however if you are using multiple databases in a query then you would need to.

User Avatar

Wiki User

16y ago

Still curious? Ask our experts.

Chat with our AI personalities

FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
More answers

You need a mechanism for indication the REP_NUM column to which you are referring. One common approach o solving this problem is to write both the table name and the column name, separated by a period. Thus, the REP_NUM column in the CUSTOMER table is written as CUSTOMER.REP_NUM, whereas the REP_NUM column in the REP table is written as REP.REP_NUM. Technically, when you write columns in this format, you say that you qualify the name. It is always acceptable to qualify column names, even if there is no potential for confusion. If confusion might arise, however, it is essential to qualify column names.

User Avatar

Wiki User

13y ago
User Avatar

A field is the name given to the column or attribute. A field name cannot be empty and also it cannot be an identifier. Example in a table stud there are fields like Fname, Lname, Rollno etc

User Avatar

Wiki User

10y ago
User Avatar

A fully qualified field name in simple terms is the table name in which the field resides and the field name. As an example we have a table called Customers and a field FirstName Within a query you cold point to or declare the field name as simply FirstName. Now if you are joining a couple of tables and each has the field name FirstName you would need to fully qualify the field so that the database would know from which table you wanted the FirstName data. So in this example lets say we have the tables Customers and Employee. Within the Customers table we have a EmployeeID field that ties an employee (maybe the employee that entered the customer) to the customer. Now in a query you want to display the Customer's first name. In this case you would need to specify the table name WITH the field name in order to present a result. Example: Customers.FirstName or Employee.FirstName You could further qualify the field by including the database names as well. This is NOT common however if you are using multiple databases in a query then you would need to.

User Avatar

Wiki User

16y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What does it mean to qualify a field name?
Write your answer...
Submit
Still have questions?
magnify glass
imp