info management prefinals

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:41 AM on 5/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Query

A specific request for data manipulation issued by the end-user or the application to the DBMS

2
New cards

SQL

Structured Query Language; consists of commands to create structures, manipulate/administer data, and query information

3
New cards

CREATE DATABASE

Creates a new database

4
New cards

DROP DATABASE

Deletes an existing database

5
New cards

CREATE TABLE

Creates a new table in a database

6
New cards

DROP TABLE

Deletes an existing table in a database

7
New cards

TRUNCATE TABLE

Deletes only the table's data without removing the table structure

8
New cards

ALTER TABLE

Adds, deletes, or modifies columns in an existing table

9
New cards

NOT NULL

Ensures that a column cannot have a NULL value

10
New cards

UNIQUE

Ensures that all values in a column are different

11
New cards

PRIMARY KEY

Uniquely identifies each row in a table

12
New cards

FOREIGN KEY

Uniquely identifies a row in another table

13
New cards

CHECK

Ensures that all values in a column satisfy a specific condition

14
New cards

DEFAULT

Sets a default value for a column when no value is specified

15
New cards

INSERT INTO

Adds new rows or records to a table

16
New cards

SELECT

Retrieves values of all rows or a subset of rows in a table

17
New cards

DISTINCT

An operator used with SELECT to retrieve unique values from columns

18
New cards

WHERE

An option used with SELECT to filter rows based on provided criteria

19
New cards

IS NULL

An operator used with SELECT to determine whether a field is empty

20
New cards

LIKE

An operator used with WHERE to determine if a value matches a given string pattern

21
New cards

IN

An operator used with WHERE to check if a value matches any value within a given list

22
New cards

BETWEEN

An operator used with WHERE to check whether a value is within a range

23
New cards

ORDER BY

An option used with SELECT to sort retrieved values in ascending or descending order

24
New cards

UPDATE

Modifies existing records in a table

25
New cards

DELETE

Removes existing records in a table