FAQ: Manipulation - Generalizations

This community-built FAQ covers the “Generalizations” exercise from the lesson “Manipulation”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Web Development
Data Science

Learn SQL

FAQs on the exercise Generalizations

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

I think it’d be easier to remember all these clauses if they were introduced in the following order:

  1. SELECT

We need to know how to view the data after adding, modifying, deleting rows and columns, to check whether we have done it correctly. So SELECT is the first thing to learn.

  1. CREATE (and discuss constraints)

The topic on constraints is a bit advanced, but it should come right after we learn CREATE.

  1. INSERT
  2. UPDATE
  3. DELETE

These three clauses all deal with rows. They should be taught together.

  1. ALTER TABLE

This one deals with columns, and in this sense is different from the above three on rows.

5 Likes