When you use the USING keyword instead of the ON keyword for a join,
A. the statement can only join two tables
B. the join must be based on a column or columns that have the same name in both tables
C. the join can't be an outer join
D. the join can't be done on more than one column
Answer: B. the join must be based on a column or columns that have the same name in both tables
You might also like to view...
The network administrator is responsible for the overall health of the information systems in the facility
Indicate whether the statement is true or false
Combine the statements into a program that calculates and prints the sum of the integers from 1 to 10. . Use the while statement to loop through the calculation and increment statements. The loop should terminate when the value of x becomes 11.
```
// Calculate.cpp
// Calculate the sum of the integers from 1 to 10
#include