You can add the results of a query to an existing table by using a(n) _________ query

Fill in the blank(s) with correct word


append

Computer Science & Information Technology

You might also like to view...

A driver is

(A) another name for the team leader of a project. (B) a "dummy" program designed solely to call a single procedure and examine its returned values. (C) one of the event procedures that a user can invoke. (D) never to be used.

Computer Science & Information Technology

The technique of immediate data validation and reporting of errors is known as _________.

A. online validation B. regular expression C. inline validation D. immediate validation

Computer Science & Information Technology

Which if statement would be true if you needed to see if x (an int) was either 1 or 2?

A. if ( x == 1 || 2 ) B. if ( x =1 || 2 ) C. if ( x == 1 && x == 2 ) D. if( x == 1 || x == 2)

Computer Science & Information Technology

The continue statement is similar to the break statement but only applies to loops created with while, do-while and for statements.

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

Computer Science & Information Technology