- 4
Fill in the blanks to select the "address" from "customers" using the fully qualified name for the address column
9 Answers
+ 3
Select customers.address
from customers;
0
Fully qualified name means you include the table name (and at times - optionally, database name) when you refer to a column (field) name, in this case it would be "customers.address" opposed to just "address". The rest is yours to accomplish, try to review the chapter if you found difficulties : )
0
Please tell me the answer
0
Please tell me the answer
0
CUSTOMERS
ADDRESS
0
Select customers.address
from customers;
0
Drag and drop from the options below to list the table names.
- 1
Please tell me the answer
- 4
This means use the exact name of the column. In this case - adress. Using "*" is considered bad practice and may lead to unexpected results.
Good luck and stay hungry!đ