232k views
5 votes
The FROM clause can contain a second, a much simpler, name for a table. This name is called a(n) ________.

1) Alias
2) Index
3) Join
4) Constraint

User Alternatex
by
6.9k points

1 Answer

3 votes

Final answer:

The FROM clause can contain an alias, a second name for a table that is used in complex queries.

Step-by-step explanation:

The FROM clause can contain a second, much simpler name for a table which is called an alias. An alias is useful when working with complex queries that involve multiple tables as it provides a way to refer to the table using a shorter, more convenient name. For example, if we have a table called 'students', we can assign it an alias 's' using the syntax 'FROM students AS s'.

User Hoonzis
by
7.0k points