Chapters 7 and 9 Flashcards
Into what two broad categories do SQL functions fit into?
data definition language
data manipulation language
creates a database schema
CREATE SCHEMA AUTHORIZATION
creates a new table in the user’s database schema
create table
ensures that a column will not have null values
not null
ensures that a column will not have duplicate values
unique
defines a primary key for a table
primary key
defines a foreign key for a table
foreign key
defines a default value for a column when no value is given
default
validates data in an attribute
check
creates an index for a table
create index
creates a dynamic subset of rows and columns from one or more tables
create view
Modifies a table’s definition (adds, modifies, or deletes attributes
or constraints)
Alter table
Creates a new table based on a query in the user’s database schema
create table as
permanently deletes a table
drop table
permanently deletes an index
drop index
permanently deletes a view
drop view
the process the DBMS uses to verify that only registered users access the database
authentification
schema
logical group of database objects
logical group of database objects
schema
a symbol that can be used as a general substitute for other characters or commands.
wildcard character
wildcard character
a symbol that can be used as a general substitute for other characters or commands.
field of mathematics dedicated to the use of logical operators
boolean algebra
list the six basic data types
number, numeric, char, varchar, date
provides for data collection, storage, and retrieval.
Information system