• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back
What does SQL short for?
Structured Query Language
What does the FROM command do?
Selects the table that the data will come from
What does the ORDER BY command do?
Allows you to display the data in asending or desending order
what does * do?
shows all data in the table
What does <> mean?
not equal to
What is the result of this query?
SELECT *
FROM Awesome computers
WHERE Make='Mac'
Syntax error
no awesome computers are mac
What is the result of this query?
SELECT *
FROM students
WHERE grade='8'
Shows all data in the students table if the student is in grade 8