Pytania i odpowiedzi Flashcards
The terms “bitmap,” “b-tree,” and “hash” refer to which type of database structure?
Index
One reason to add an index is to:
Improve performance of select statements.
You have a table that contains the following data.
You break the table into the following two tables.
This process is referred to as:
Normalization
You have a table that contains the following data.
Which database term is used to describe the relationship between ProductID and ProductCategory?
Functionally dependent
Which key uniquely identifies a row in a table?
primary
At 3:00 P.M. (1500 hours), you create a backup of your database. At 4:00 P.M. (1600 hours), you create a table named Customer and import data into the table.
At 5:00 P.M. (1700 hours), your server fails.
You run a script to apply only the 3:00 P.M. backup to your database. What is the result of the script?
The Customer table no longer exists.
In which situation do you need to perform a restore on a database?
when data becomes corrupted in the database
Which command should you use to give a user permission to read the data in a table?
GRANT SELECT
You need to enable a new employee to authenticate to your database.
Which command should you use?
CREATE USER
Which keyword can be used in a create table statement?
UNIQUE
You need to store product quantities, and you want to minimize the amount of storage space that is used. Which data type should you use?
INTEGER
You need to store product names that vary from three to 30 characters. You also need to minimize the amount of storage space that is used.
Which data type should you use?
VARCHAR (30)
One reason to create a stored procedure is to:
Improve performance.
Which permission does a user need in order to run a stored procedure?
EXECUTE
You have a table named Product. You create a view that includes all the products from the Product table that are in the Furniture category.
You execute a statement on the Product table that deletes all the products in the Furniture category.
After you execute the statement, the result set of the view is:
Empty
In SQL, an insert statement is used to add a:
Row of data to a table.
You have two tables. Each table has three rows.
How many rows will be included in the Cartesian product of these two tables?
9
You are writing an SQL statement to retrieve rows from a table.
Which data manipulation language (DML) command should you use?
SELECT
Which constraint ensures a unique value in the ID column for each customer?
PRIMARY KEY
The component that holds information for a single entry in a table is called a:
Row
You execute the following statement:
SELECT EmployeeID, FirstName, DepartmentName
FROM Employee, Department -
This type of operation is called a/an:
Cartesian product
Which command should you use to add a column to an existing table?
ALTER
You have the following table definition:
CREATE TABLE Product - (ID INTEGER PRIMARY KEY, Name VARCHAR(20), Quantity INTEGER) The Product table contains the following data.
You execute the following statement:
SELECT Name FROM Product WHERE Quantity IS NOT NULL
How many rows are returned?
3
You are writing a select statement to find every product whose name contains a specific character.
Which keyword should you use in your where clause?
LIKE
A database contains two tables named Customer and Order.
You execute the following statement:
DELETE FROM Order -
WHERE CustomerID = 209 -
What is the result?
All orders for CustomerID 209 are deleted from the Order table.
You have a table that contains information about all students in your school.
Which SQL keyword should you use to change a student’s first name in the table?
UPDATE
Which keyword would you use in a select statement to return rows that meet a specific condition?
WHERE
The Product table contains the following data.
You execute the following statement:
SELECT COUNT(*)
FROM Product WHERE Quantity > 18
What is the value returned by this statement?
3
You need to store the contact information for each student in your school database.
You should store each student’s information in a:
Row
Which category of SQL statements is used to add, remove, and modify database structures?
Data definition language (DDL)
You have a Customer table and an Order table. You join the Customer table with the Order table by using the CusromerID column.
The results include:
All customers and their orders -
✑ Customers who have no orders
Which type of join do these results represent?
Outer join
Data in a database is stored in:
Tables
You have a table named Student that contains 100 rows. Some of the rows have a NULL value in the FirstName column.
You execute the following statement:
DELETE FROM Student -
What is the result?
All rows in the table will be deleted.
You need to establish a set of permissions that you can routinely assign to new users.
What should you create?
Role
Which database term is used to describe the process of applying a backup to a damaged or corrupt database?
Restore
Denormalization is performed in order to:
Improve query performance.
You have a table named Product that contains one million rows.
You need to search for product information in the Product table by using the product’s unique ID.
What will make this type of search more efficient?
An index
Which keyword must be included in a create view statement?
SELECT
You need to remove a view named EmployeeView from your database.
Which statement should you use?
DROP VIEW EmployeeView
A named group of SQL statements that can be executed in a database is called a:
Stored procedure
A view can be used to:
Limit access to specific rows or columns of data in a table.
On which database structure does an update statement operate?
Table
You delete rows in a table named Order. The corresponding rows in the OrderItem table are automatically deleted. This process is an example of a/an:
Cascade delete
You have a table named Employee that includes four columns.
You execute the following statement:
SELECT *
FROM Employee -
Which columns are returned?
all columns
Which two elements are required to define a column? (Choose two.)
A name , A data type
What defines the amount of storage space that is allocated to a value in a column?
data type
You are creating a table to store customer data. The AccountNumber column uses values that always consist of one letter and four digits. Which data type should you use for the AccountNumber column?
CHAR
What is one difference between an update statement and a delete statement?
An update statement does not remove rows from a table.
You have a Department table and an Employee table in your database.
You need to ensure that an employee can be assigned to only an existing department.
What should you apply to the Employee table?
A foreign key
You need to store the first name, last name, and student ID for 100 students.
This information will be stored in a table as:
100 rows and three columns.
What are three valid data manipulation language (DML) commands? (Choose three.)
INSERT, DELETE , UPDATE
You assign User1 a set of permissions that include the WITH GRANT OPTION.
The WITH GRANT OPTION enables User1 to:
create new database users.
Which type of index changes the order in which the data is stored in a table?
non-sequential
Which statement should you use to remove a foreign key?
ALTER TABLE
First normal form requires that a database excludes:
Repeating groups
You execute a statement inside a transaction to delete 100 rows from a table. The transaction fails after only 40 rows are deleted.
What is the result in the database?
No rows will be deleted from the table.
You have a table that contains product IDs and product names.
You need to write an UPDATE statement to change the name of a specific product to glass.
What should you include in the update statement?
SET ProduetName = ‘glass’
On which database structure does an insert statement operate?
Table
You have a table of products with fields for ProductID, Name, and Price.
You need to write an UPDATE statement that sets the value in the InStock field to Yes for a specific ProductID.
Which clause should you use in your update statement?
WHERE
You need to combine the results of two queries into a single result that contains all of the rows from both queries.
Which Structured Query Language (SQL) statement should you use?
UNION
You accept an IT internship at a local charity. The charity wants you to help them with compliance and auditing requirements.
You need to ensure that a column or combination of columns uniquely identifies each row of a table.
Which constraint should you define?
Foreign key
A view can be used to ensure referential integrity.
Limit access to specific rows or columns of data in a table.