|
alias
In an SQL query, an alternative name for a table or column. For example, you can define a table name alias in the FROM clause of a query:
FROM THINGS T, PROPERTY_LIST P
This defines the THINGS table alias as the letter T and the PROPERTY_LIST tables' alias as the letter P.
|