info management 06

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

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:35 AM on 4/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

29 Terms

1
New cards

Query

is a specific request for data manipulation

2
New cards

Popular Database Management Tools

*Microsoft SQL server
*
MySQL
*Oracle RDBMS
*Microsoft Access

3
New cards

Exact numeric

bigint, bit, decimal, int, money, numeric

4
New cards

Approximate numeric

float, real

5
New cards

Date and Time

Date, DateTime, Time

6
New cards

Character Strings

char, text, varchar

7
New cards

Unicode character strings

nchar, ntext, nvarchar

8
New cards

Binary Strings

Binary, Image, varbinary

9
New cards

Other data types

cursor, sql_variant, table, uniqueidentifier, xml

10
New cards

Arithmetic

+,-,*,/,%

11
New cards

Comparison

=,>,<,>=,<=,<>

12
New cards

Logical

AND, OR, NOT, LIKE, IN, BETWEEN, EXIST, ANY, ALL

13
New cards

CREATE DATABASE

create a new database

14
New cards

DROP DATABASE

delete an existing database

15
New cards

CREATE TABLE

create a new table in a database

16
New cards

DROP TABLE

deletes an existing table in a database

17
New cards

ALTER TABLE

adds, delete, or modifies columns in an existing table

18
New cards

NOT NULL on CREATE TABLE

ensures that a column cannot have a null value upon creating table

19
New cards

NOT NULL on ALTER TABLE

ensures that a column in an existing table cannot have a null value

20
New cards

UNIQUE ON CREATE TABLE

ensures that all values in a column are different upon creating table

21
New cards

UNIQUE ON ALTER TABLE

creates a unique constraint on a column of an existing table

22
New cards

PRIMARY KEY ON CREATE TABLE

uniquely identifies each row in table

23
New cards

PRIMARY KEY on ALTER TABLE

creates a primary key constraint on a column of an existing table

24
New cards

FOREIGN KEY on CREATE TABLE

uniquely identifies a row in another table

25
New cards

FOREIGN KEY on ALTER TABLE

creates a foreign key constraint on a column of an existing table

26
New cards

CHECK on CREATING TABLE

ensures that all values in column satisfy a specific condition upon creating a table

27
New cards

CHECKING on ALTER TABLE

ensures that all values in a column of an existing table satisfy a specification condition

28
New cards

DEFAULT on CREATING TABLE

sets a default value for a column where there is no value specified

29
New cards

DEFAULT on ALTER TABLE

sets a default value for a column of an existing table when there is no value specified