, , - , . . , qualify table.field alias.field, , .
, , , . - , , , , S/O. , , , .
select
SomeField,
AnotherField
from
OneOfMyTables
Join SecondTable
on SomeID = SecondID
select
T1.SomeField,
T2.AnotherField
from
OneOfMyTables T1
JOIN SecondTable T2
on T1.SomeID = T2.SecondID
In these two scenarios that you prefer to read ... Note: I simplified the query using the shorter aliases "T1" and "T2", but they can be any, even abbreviated or abbreviated aliases of the table names ... "oomt" (one of my tables) and "st" (second table). Or, as something very long, as it was in other posts ...
Select * from ContractPurchaseOffice_AgencyLookupTable
vs
Select * from ContractPurchaseOffice_AgencyLookupTable AgencyLkup
If you needed to save qualification associations or field columns that you would prefer to see.
Hope this clarifies your question.
DRapp source
share