A delete query ________

A) makes a new table
B) searches a field and displays records that contain duplicates
C) adds the results of a query to an existing table
D) removes records from a table


D

Computer Science & Information Technology

You might also like to view...

What is the output of the function call strange (6) given the following definition?

void strange (int n) { if (n > 1) { cout << n + 1 << “ “ << endl; strange (n-2); cout << n-1 << “ “ << endl; } }

Computer Science & Information Technology

In the accompanying figure ofa Microsoft Access 2016 document, which of the following is Box 1 pointing to?? ?

A. ?Datasheet View button B. ?Layout View button C. ?SQL View button D. ?Design View button

Computer Science & Information Technology

_____ include the people, procedures, hardware, software, data, and knowledge needed to develop computer systems and machines that can simulate human intelligence processes including learning, reasoning, and self-correction.  

A. Assistive technology systems B. Intelligence agents C. Artificial intelligence systems D. Virtual reality systems

Computer Science & Information Technology

In order to leave 15 pixels of space in an HBox container, use which of the following statements?

a. myhbox = setPadding(15); b. myhbox.setPadding(15); c. myhbox.setPadding.Insets(15); d. myhbox.setPadding(new Insets(15));

Computer Science & Information Technology