I am confuse about fully qualified name can anyone explain? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am confuse about fully qualified name can anyone explain?

30th Jan 2016, 3:39 PM
suvidha chourasia
1 Answer
+ 2
fully qualified means prefixing a "columnname" with "tablename." to avoid confusion. e.g. if two tables Customers & Vendors both have a field called city below is an example how a fully qualified query will look like. select Customers.city, Vendors.city from Customers C, Vendors V Where C.CityId = V.CityId; hope this helps.
6th Feb 2016, 4:29 PM
Krish Agrawal