questions week 8

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Which command is used to add rows to a table?

Insert.

Which command is used to modify existing data in a table?


update.

Which command is used to prevent other users from making changes to a table?
lock table.

Which command is used to remove rows from a table?


delete.

Which keyword/command permanently saves changed data in a table?


commit

Which command allows a user to make changes to the data?


rollback.

The column to be updated by the update command is specified in which clause?


set.

The rows to be updated by the update command are specified by which clause?
where.

Commands used to modify data are known as which commands?


DML (data manipulation language).

A user who is issuing DML commands can save modified data by issuing which statements?
Transaction control.

When does an implicit command occur?


When the user issues a DML command such as create or alter table.

Which lock will prevent any DDL operations from being performed on the lock table?
exclusive.

Based on the contents of the publisher table which of the following will add a new record to the table?

You might also like