1. सीखें
  2. /
  3. प्रोजेक्ट्स
  4. /
  5. Applying SQL to Real-World Problems

Connected

अभ्यास

Apply best practices to your code

In this exercise you will update the code below to adhere to the best practices you learned in this chapter.

SELECT first_name, last_name, email FROM rental AS r 
-- FROM address AS a JOIN r.address_id = a.address_id
JOIN customer AS c ON r.customer_id = c.customer_id;

निर्देश 1/4

undefined XP
    1
    2
    3
    4

प्रश्न

What steps should you take here to adhere to the best practices you've learned in this chapter?

संभावित उत्तर