Database Administration and MySQL Review

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

Flashcards for reviewing database administration concepts, including data, databases, database management systems, SQL, and AWS.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Data

Facts, figures, values, or statistics.

2
New cards

Database

A structured collection of data, mostly consisting of recordable facts, made up of tables containing columns and rows.

3
New cards

Advantages of using a database

Avoid redundancy, easily modify information, keep many organized records, easily retrieve records, better data integration, greater data integrity.

4
New cards

Database Basics

Data is stored in tables, a table contains individual records, and records consist of fields.

5
New cards

Relational Database

A collection of data items with pre-defined relationships between them.

6
New cards

Primary Key

Uniquely identifies a record in the table.

7
New cards

Foreign Key

A field in the table that is a primary key in another table.

8
New cards

Database Management System (DBMS)

A system software used to create, delete, and manipulate data within a database, allowing users to store, process, and analyze data easily.

9
New cards

SQL – Structure Query Language

A database query language used to store, manage, and manipulate data within a database.

10
New cards

DDL: Data Definition Language

Commands used to define and modify the structure of a database (Create, Alter, Truncate, Drop, Rename).

11
New cards

DML: Data Manipulation Language

Commands used to manipulate data stored in a database (Insert, Update, Delete, Merge).

12
New cards

DCL: Data Control Language

Commands used to grant or remove privileges from a database user (Grant, Revoke).

13
New cards

Basic Data Retrieval

Commands used to fetch data from tables (Select, From, Where).

14
New cards

MySQL

A widely-used open-source relational database management system.

15
New cards

SELECT (SQL)

Used to query from tables.

16
New cards

WHERE (SQL)

Used to limit data when Querying.

17
New cards

Accessing Data

User account with privileges needed to access or change data.

18
New cards

Amazon Web Services (AWS)

Market leader in IaaS (Infrastructure-as-a-Service) and PaaS (Platform-as-a-Service).

19
New cards

Amazon Relational Database Service (Amazon RDS)

Makes it easy to set up, operate, and scale a relational database in the cloud.

20
New cards

Amazon RDS database engines

PostgreSQL, MySQL, MariaDB, Oracle Database, SQL Server

21
New cards

COUNT (SQL)

The COUNT function allows you to count all rows in a table or rows that match a particular condition.

22
New cards

DISTINCT (SQL)

To count unique rows in the demos table, you add the DISTINCT operator to the COUNT function.

23
New cards

TABLES

24
New cards
25
New cards

FIELDS

Records consist of _____