A(n) ________ query allows the values of one or more fields in a query dataset to be modified

Fill in the blank(s) with correct word


update

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. All loops have the three steps: initialize, test and update. 2. If a sentinel-controlled loop is reading integers, the sentinel could be a character. 3. What will the value of the flag be when the following loop exits: bool flag = false; while (!flag) { ….. } 4. The inner loop below will execute 25 times: for (int a = 0; a < 5; a ++) for (int b = 0; b < 5; b = b + 2) …. 5. If your code has an if statement inside a while loop with the same condition, you should consider using a do…while loop.

Computer Science & Information Technology

To adjust all columns in a table to the width of their longest line, use

A. Cell Width Adjust B. AutoWidth C. AutoFit Contents D. Set Column Width

Computer Science & Information Technology

Which of the following characters, when pressed while the top program is running, will allow you to change the niceness of a process?

A. n B. p C. r D. d

Computer Science & Information Technology

In MySQL, you use the  ____________________ command to change the database to the one you want to use.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology