Management Information Systems

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

flashcard set

Earn XP

Description and Tags

These flashcards cover essential vocabulary and concepts from Management Information Systems, specifically focusing on SQL and database management.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Structured Query Language (SQL)

A programming language designed for managing and manipulating relational databases.

2
New cards

RDBMS

Relational Database Management System, a type of database management system that stores data in a structured format, using rows and columns.

3
New cards

Database Schema

A logical structure that defines how data is organized and how the relationships among data are managed.

4
New cards

Data Type

Defines the kind of data that can be stored in a column of a database table.

5
New cards

Primary Key

A unique identifier for records in a table, ensuring that each record can be uniquely identified.

6
New cards

Foreign Key

A field in one table that uniquely identifies a row of another table, establishing a link between the two tables.

7
New cards

NOT NULL Constraint

A constraint that ensures a column cannot contain NULL values.

8
New cards

UNIQUE Constraint

A constraint that ensures all values in a column are distinct.

9
New cards

INSERT Command

A data manipulation command used to insert new rows into a database table.

10
New cards

SELECT Command

A command used to retrieve data from a database.

11
New cards

UPDATE Command

A command used to modify existing rows in a database table.

12
New cards

DELETE Command

A command used to remove rows from a table.

13
New cards

COMMIT Command

A command that permanently saves all changes to the database.

14
New cards

ROLLBACK Command

A command that undoes changes made since the last COMMIT.

15
New cards

INNER JOIN

A SQL join that returns only rows with matching values in both tables.

16
New cards

LEFT OUTER JOIN

A join that returns all rows from the left table and matched rows from the right table.

17
New cards

RIGHT OUTER JOIN

A join that returns all rows from the right table and matched rows from the left table.

18
New cards

WHERE Clause

A clause used to filter records that meet specific criteria.

19
New cards

Logical Operators

Tools like AND, OR, and NOT used to combine conditions in SQL queries.

20
New cards

Arithmetic Operators

Operators that perform mathematical calculations in SQL.

21
New cards

Data Manipulation Commands

Commands that are used to manipulate data in a database, including INSERT, SELECT, UPDATE, DELETE.

22
New cards

JOIN

An operation that combines rows from two or more tables based on related columns.