Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
81
Question: The OR operator displays a record
if ANY conditions listed are true. The AND operator displays a record if
ALL of the conditions listed are true
The Answer of this quiz is ' True'
The Answer of this quiz is ' True'
81
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
82
Question: Which of the following correctly calls the stored procedure "test" which has no parameters?
The Answer of this quiz is ' CALL test;'
The Answer of this quiz is ' CALL test;'
82
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
83
Question: Which of the following clauses can be used in a SELECT statement to reduce the results to a unique list of values?
The Answer of this quiz is ' DISTINCT'
The Answer of this quiz is ' DISTINCT'
83
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
84
Question: I would like to retrieve the date with this format : dd/mm/YYYY in a field called btimestamp. Choose the correct way.
The Answer of this quiz is ' SELECT DATE_FORMAT(btimestamp,'%d/%m/%Y') AS bdate FROM ...'
The Answer of this quiz is ' SELECT DATE_FORMAT(btimestamp,'%d/%m/%Y') AS bdate FROM ...'
84
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
85
Question: When a MySQL database is "normalized", by common definition, it means which of the following?
The Answer of this quiz is ' count(distinct)'
The Answer of this quiz is ' count(distinct)'
85
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
86
Question: Which of the following is used to control case sensitivity?
The Answer of this quiz is ' binary'
The Answer of this quiz is ' binary'
86
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
87
Question: Assign the custom `foo` variable with the value `bar`
The Answer of this quiz is ' SET @foo = 'bar';'
The Answer of this quiz is ' SET @foo = 'bar';'
87
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
88
Question: What does this statement: DELETE FROM xpto WHERE 1;
The Answer of this quiz is ' Delete all records in table 'xpto' but does not reset the AUTO_INCREMENT sequence'
The Answer of this quiz is ' Delete all records in table 'xpto' but does not reset the AUTO_INCREMENT sequence'
88
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
89
Question: True of false? TEXT is case-insensitive in BLOB
The Answer of this quiz is ' True'
The Answer of this quiz is ' True'
89
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
90
Question: Which of the following are true concerning indexes?
The Answer of this quiz is ' Indexes will slow down inserts, but speed up selects'
The Answer of this quiz is ' Indexes will slow down inserts, but speed up selects'
90
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
91
Question: What does the following command output: 'SELECT 1'
The Answer of this quiz is ' 1'
The Answer of this quiz is ' 1'
91
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
92
Question: Which of the following queries returns 100 results, starting from the 25th result?
The Answer of this quiz is ' SELECT book_title FROM books LIMIT 24, 100'
The Answer of this quiz is ' SELECT book_title FROM books LIMIT 24, 100'
92
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
93
Question: How would you remove all rows from a table "STAFF"
The Answer of this quiz is ' DELETE FROM STAFF'
The Answer of this quiz is ' DELETE FROM STAFF'
93
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
94
Question: Which of the following is used to
access a result set stored in memory after execution of a query,
allowing the result data to be manipulated on a row-by-row basis?
The Answer of this quiz is ' Cursor'
The Answer of this quiz is ' Cursor'
94
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
95
Question: What happens when a Unique or
Primary Key column is set to AUTO INCREMENT, and an INSERT would exceed
the maximum value for that column?
The Answer of this quiz is ' It stops incrementing, producing a duplicate key error.'
The Answer of this quiz is ' It stops incrementing, producing a duplicate key error.'
95
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
96
Question: In a WAMP environment, what is the
correct way to permanently change the largest possible packet that can
be transmitted to or from a MySQL server?
The Answer of this quiz is ' Edit the my.ini file and change the setting max_allowed_packet. Then restart the service.'
The Answer of this quiz is ' Edit the my.ini file and change the setting max_allowed_packet. Then restart the service.'
96
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
97
Question: The user-created stored function
'test' takes a varchar(5) and an integer and returns a varchar. Which of
the following correctly calls the function?
The Answer of this quiz is ' CALL test('asdfg', 6);'
The Answer of this quiz is ' CALL test('asdfg', 6);'
97
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
98
Question: What term describes the number of unique values in an index?
The Answer of this quiz is ' Cardinality'
The Answer of this quiz is ' Cardinality'
98
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
99
Question: Which foreign keys do MyISAM tables support?
The Answer of this quiz is ' None, MyISAM tables do not support foreign keys.'
The Answer of this quiz is ' None, MyISAM tables do not support foreign keys.'
99
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
100
Question: Given two tables, t1 and t2, the
join condition "t1.t2_id = t2.id" how do you get rows from t1 that have
NO counterparts in t2?
The Answer of this quiz is ' LEFT JOIN t2 ON t1.t2_id = t2.id WHERE t2.id IS NULL'
The Answer of this quiz is ' LEFT JOIN t2 ON t1.t2_id = t2.id WHERE t2.id IS NULL'
100
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
101
Question: Which of the following statements can be used to remove user accounts from MySQL?
The Answer of this quiz is ' DROP USER user;'
The Answer of this quiz is ' DROP USER user;'
101
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
102
Question: What command executed by a client exports data to a file?
The Answer of this quiz is ' SELECT ... INTO OUTFILE'
The Answer of this quiz is ' SELECT ... INTO OUTFILE'
102
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
103
Question: The _____________ privilege is often used when loading a file into a database table.
The Answer of this quiz is ' File_priv'
The Answer of this quiz is ' File_priv'
103
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
104
Question: What is a major difference between MyISAM and InnoDB storage engines?
The Answer of this quiz is ' InnoDB uses row locking where MyISAM uses table locking.'
The Answer of this quiz is ' InnoDB uses row locking where MyISAM uses table locking.'
104
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
105
Question: When using the grant command which phrase sets the password of the user?
The Answer of this quiz is ' • Identified By'
The Answer of this quiz is ' • Identified By'
105
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
106
Question: Which of the following MySQL client command line arguments would you use to connect to a server?
The Answer of this quiz is ' % mysql [options]'
The Answer of this quiz is ' % mysql [options]'
106
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
107
Question: The GROUP BY clause of a SELECT statement requires which of the following?
The Answer of this quiz is ' • ORDER BY clause • WHERE clause • LIMIT clause • HAVING clause • None of these'
The Answer of this quiz is ' • ORDER BY clause • WHERE clause • LIMIT clause • HAVING clause • None of these'
107
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
108
Question: What is the maximum allowed length of a column name?
The Answer of this quiz is ' 64'
The Answer of this quiz is ' 64'
108
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
109
Question: How would you select a value that lets column B (if specified) override column A?
The Answer of this quiz is ' COALESCE(B, A)'
The Answer of this quiz is ' COALESCE(B, A)'
109
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
110
Upwork All skills Test Answers >> Upwork answers of MySQL >> Complete MySQL Quiz Answers
Question: Which of these queries will return the values of the "order" column in the "slides" table in descending order?
The Answer of this quiz is ' SELECT `order` FROM `slides` ORDER BY `order` DESC'
The Answer of this quiz is ' SELECT `order` FROM `slides` ORDER BY `order` DESC'
110
Question: Which is NOT an available storage engine?
The Answer of this quiz is ' SQLite'
The Answer of this quiz is ' SQLite'
No comments:
Post a Comment