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

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;

9 Cards in this Set

  • Front
  • Back

Select

Select data from a database




SELECT column_name, column_name FROM table_name;

Distinct

Shows distinct values in the table given parameters




SELECT DISTINCT...

Where

Determines specific criteria of data




SELECT column_name, column_name FROM table_name


WHERE column_name operator value;

Order By

Organizes the data




SELECT column_name, column_name FROM table_name


WHERE column_name operator value ORDER BY column_name ASC/DESC, column_name ASC/DESC;

Insert Into

Adds values into a preexisting table




INSERT INTO table_name column 1, column 2, column 3 VALUES value 1, value 2, value 3;



Update

Changes the values in a preexisting table




UPDATE table_name


SET column 1 = value 1, column 2 = value 2,... WHERE some_column = some_value;

Delete

Deletes records in a preexisting table




DELETE FROM table_name


WHERE some_column = some_value

Select Top/ Limit

Limits the output based on the criteria




SELECT TOP number/percent column_name


FROM table_name;




SELECT column_name FROM table_name LIMIT 20 PERCENT;

Like

Uses a pattern in order to determine a criteria. Usually used with wildcards




SELECT column_name FROM table_name


WHERE column_name LIKE '?a';