• 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
Q: What are the commands to start and stop MySQL?
A: -NET START MySQL and -NET STOP MySQL
Q: What is the MySQL server default port?
A: The default port is 3306.
Q: What is the MySQL command to get a list of user accounts?
A: -SELECT User FROM mysql.user
Q: What is the MySQL command to concatenate a string of characters?
A: -CONCAT(string1, string2, string3)
Q: What is the MySQL command to delete a column?
A: -ALTER TABLE table_name DROP column_name