Fill in the blanks to select the "address" from "customers" using the fully qualified name for the address column | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

Fill in the blanks to select the "address" from "customers" using the fully qualified name for the address column

12th Jan 2019, 9:31 AM
Nitesh Suhas Bansode
Nitesh Suhas Bansode - avatar
9 Answers
+ 3
Select customers.address from customers;
3rd Dec 2020, 4:20 AM
Dhika Nur Aisyah
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 : )
12th Jan 2019, 9:57 AM
Ipang
0
Please tell me the answer
24th Apr 2020, 11:27 AM
Rubikha devi. K
0
Please tell me the answer
8th Jun 2020, 4:46 PM
milinda edward
milinda edward - avatar
0
CUSTOMERS ADDRESS
14th Dec 2020, 3:11 PM
Caio Silva
Caio Silva - avatar
0
Select customers.address from customers;
30th Dec 2020, 2:56 AM
mt.ali
mt.ali - avatar
0
Drag and drop from the options below to list the table names.
17th Nov 2022, 5:45 PM
Marziya N
Marziya N - avatar
- 1
Please tell me the answer
29th Jun 2020, 8:01 AM
Shrutika
- 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!😊
12th Jan 2019, 9:41 AM
Denis Cvetanov
Denis Cvetanov - avatar