• 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/5

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;

5 Cards in this Set

  • Front
  • Back
What does SQL stand for?
Structured Query Language
Identify some of the syntax (words) that are used in obtaining data from a SQL database.
SELECT
FROM
WHERE
ORDER BY
How do you select everything in a table in SQL?
By using an asterix *
What Syntax would you use to remove repeated data?
DISTINCT
What would the following query produce:
SELECT qualification
FROM experience
WHERE employee_id = 1470
AND platform='iMac'
This query would produce the type of experience employee 1470 has on iMac computers