final exam MC Flashcards
what is the name of the database we are using in lecture, lab, and homework?
SQLite
Which of the following allows us to indicate two tables to be joined?
INNER JOIN
which clause allows us to indicate how we want to filter the records?
WHERE
What is the clause that indicates the field(s) to be retrieved from a query?
SELECT
what is the clause which indicates the tables to be used in the query
FROM
which query allows us to modify a record in a table?
UPDATE
which query lets us delete a record from a table?
DELETE
Which clause prevents us from deleting all records in a table when writing a DELETE query?
WHERE
We can specify which fields in a table we want to fill in when we create a new record, but we are required to fill in any field that cannot be null when creating the record (T/F)
True
When writing an update statement if you forget the WHERE clause, the entire table will be updated…not just the records you want to change.
True
What is the tool that manages our dependencies for us?
Maven
The three things we need for coordinates are the company id, artifact id, and version.
False
To execute a SELECT query in the JDBC what method should you use?
executeQuery()
what holds the results from running a SELECT query?
ResultSet