MySQL Flashcards

1
Q

What is MySQL?

A

MySQL is a relational database that uses SQL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Database vs Table

A

A database is a collection of tables. Tables are groups of data within the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are foreign keys in MySQL?

A

Foreign keys are columns in a table that connect the table with other tables by linking the foreign keys with another table’s primary keys.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is MySQL workbench?

A

MySQL Workbench is a GUI web interface for interacting with MySQL databases

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

PHP+MySQL: WHen should you use post vs get?

A

Use get when there are no side effects from querying a db. Use post when the form submission has side effects such as modification of a database or subscription to a service,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly