DBMS Finals

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

A request made to a database to retrieve or manipulate data using SQL is called __.

SQL Query

2
New cards

The SQL command to remove records from a database is __.

DELETE

3
New cards

A SQL query nested inside another query is known as a __.

Subquery

4
New cards

A subquery that returns only one row is called a __ subquery.

Single-row

5
New cards

To find employees in a specific department using subqueries, you would use __ in the WHERE clause.

IN

6
New cards

The command used to create a virtual table in SQL is __.

CREATE VIEW

7
New cards

A stored procedure is a named collection of SQL statements that you can __ and reuse.

call

8
New cards

To update an existing view, you can use the command __.

CREATE OR REPLACE VIEW

9
New cards

If you want to drop a stored procedure named TopCustomers, the command is __.

DROP PROCEDURE IF EXISTS TopCustomers.

10
New cards

To call a stored procedure, you would use the command __ followed by the procedure name.

CALL