InterviewSolution
Saved Bookmarks
| 1. |
Before MySQL 5.1.6 which privilege was required to create and drop triggers?(a) PRIVILEGE(b) TRIGGER(c) SUPER(d) MACROI had been asked this question during an interview.This key question is from Triggers in division Stored Programs of MySQL |
|
Answer» RIGHT option is (c) SUPER Best explanation: The privilege to create and DROP triggers is VERSION SPECIFIC in MySQL. Before MySQL 5.1.6, the SUPER privilege was needed. Access control is more CORRECTLY handled post this version. |
|