Which of the following SELECT statements will select the ItemNum and ItemDesc fields from the tblItems table?

A. SELECT ItemNum OR ItemDesc FROM tblItems
B. SELECT ItemNum AND ItemDesc FROM tblItems
C. SELECT ItemNum, ItemDesc IN tblItems
D. SELECT ItemNum, ItemDesc FROM tblItems

Answer: D

Computer Science & Information Technology

You might also like to view...

Disk duplexing is the same as what type of disk redundancy?

A. Disk striping with parity B. Disk leveling C. Disk mirroring D. Disk high-level striping

Computer Science & Information Technology

What will be output from the following code:

``` public void t e s t 1 ( ) { int x = 0 ; while ( x < 3) { x = x + 1 ; System . out . p r i n t l n ( x ) ; } } ```

Computer Science & Information Technology