1.
Given one inner join query and one outer join query that both produce the same results, which of the following statements is true?
2.
All but one of the following queries produces the same results. Which one produces a different result or produces an error?
3.
Note: The countrycode field in the city table references the Code field in the country table. Which of the following delete statements all of the cities in the country "Spain" from the city table?
4.
Consider the following query: SELECT Code FROM Country WHERE Name = 'United States' Which of the following is the correct way to create a prepared statement using this statement in the mysql client?
5.
Which of the following are true with regards to prepared statements? Select all that apply. When executing a prepared statement
6.
Which of the following statements best describe why prepared statements are useful:
7.
You have an external application that requires an input file with comma-separated values. How can you produce such a file containing the contents of the countryLanguage table using MySQL's select
8.
Suppose you have a comma-delimited file named city.csvthat you need to load into a table called city. The file delimiter is a comma, text is enclosed with double-quotes, and each line is ends with a newline character. Given this situation, what would the correct load data infile statement look like?
9.
The table Country contains the fields Code, defined as the PRIMARY KEY, and Name, which is covered by a UNIQUE index. Which of the following queries demonstrates the correct way to compare a tuple to a row subquery:
10.
Which of the following statements is true?