Survey and Introduction to AND, UPDATE, and JOIN

First, let’s spend 10 minutes to complete a short survey and learn about AND, UPDATE, and JOIN in SQL!

    Generally I have felt secure about attempting computer programming problems.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree
    I am sure I could do advanced work in computer science.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree
    I am sure that I can learn programming.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree
    I think I could handle more difficult programming problems.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree
    I can get good grades in computer science.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree
    I have a lot of self-confidence when it comes to programming.
  • 1. Strongly disagree
  • 2. Disagree
  • 3. Neither agree nor disagree
  • 4. Agree
  • 5. Strongly agree

AND Keyword

Here are Alice’s bookkeeping entries in the table bookkeeping:

https://i.ibb.co/yYZ9tyY/intro-bookkeeping.png

Sometimes we want to select data with multiple constraints, and that can be done using AND.

UPDATE Keyword

With the same table bookkeeping:

https://i.ibb.co/yYZ9tyY/intro-bookkeeping.png

Sometimes we want to update certain records.

JOIN Keyword

Consider as a publishing company, we have two table authors and books:

https://i.ibb.co/98D76Dh/intro-join.png

Sometimes we want to merge the information from different tables.

What to do next

Click on the following link to go the practice problems: Practice Problems

You have attempted of activities on this page