Advance Database System
Advance Database System
Advance Database System
A ________ refers to the activities that focus on the design of the database
structure that will be used to store and manage end-user data.
Database Designing
Another term when it is not a raw data which is also known as ________.
Information
The term ________ is normally used to limit the type of data that can be
saved into a table.
Constraints
A ________ derived from a detailed description of an organization’s
operations help to create and enforce actions within that organization’s
environment.
Business rules
A ________ are a set of one another information that describes a person,
place, or thing.
Record
A ________ in database is a group of characters that has specific meaning.
Field
We call it ________ when we encountered a wrong or bad database design.
Anomalies
It is also known as the ________ that references the primary key to another
table.
Foreign Key
A ________ is a primary key composed of multiple columns used to identify
a record.
Composite key
The term ________ are the following data that may or may not stored in the
database but rather they are computed.
Derived attribute
What does SQL stand for?
Structured Query Language
This is a type of operator which returns the information within a given
range of values, where the minimum and maximum of the range is
specified.
Between Operator
Which SQL command is used to retrieve all the columns from a table
named "employees"?
SELECT *
Which SQL function is used to find the total number of rows in a table?
COUNT(*)
Which SQL statement is used to update data in a table?
UPDATE
Which SQL statement is used to delete all records from a table without
removing the table itself?
DELETE
In SQL, which aggregate function is used to calculate the average value of
a numeric column?
AVG()
What is the purpose of the SQL WHERE clause?
Filters rows based on a specified condition
Which of the following statements is used to create a new database in
SQL?
CREATE DATABASE
What is the purpose of the SQL LIKE operator in a WHERE clause?
It is used for pattern matching in strings
The term “Non-key” in database is used when there are columns that are
being not used to identify a record in a table.
Foreign Key is used to reduce the redundancy (or duplicates) in the table.