MySQL supports 5 different int types. Which one takes 3 bytes?
Correct Answer: MEDIUMINT
Explanation:
Note: This Question is unanswered, help us to find answer for this one
MySQL Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More MySQL MCQ Questions
Which statement grants permission to Peter with password Software?
What is the correct SQL syntax for selecting all the columns from the table Persons where the LastName is alphabetically between (and including) 'Hansen' and 'Pettersen'?
What will happen if some of the columns in a table are of char datatype and others are of varchar datatype?
Evaluate the following SQL statement: SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales_amount * (.35 * e.bonus)) AS CALC_VALUE FROM employees e, sales s WHERE e.employee_id = s.emp_id; What will happen if all the parentheses are removed from the calculation?
Which one correctly selects rows from the table myTable that have NULL in column column1?
How do you get the field names and associated type of a MySQL table?
Which is NOT a valid string type available for column?
Syntax to list all databases in mysql?
Which command converts Unix Timestamp to Mysql Timestamp and vice versa?
Correct syntax to grant all privileges on all databases to a user?