Assuming that the table described in question 7) was properly updated in question 8), write one or more SQL statements to add the following items to the table: Bracket, quantity 25; Flange, quantity 8.

What will be an ideal response?

```
INSERT parts (description, quantity_in_stock) VALUES ("Bracket", 25)
INSERT parts (description, quantity_in_stock) VALUES ("Flange", 8)
```

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a single piece of information in a record in a database

A) object B) table C) field D) cell

Computer Science & Information Technology

Unethical behavior is always illegal behavior

Indicate whether the statement is true or false

Computer Science & Information Technology