InterviewSolution
Saved Bookmarks
| 1. |
On UNIX, statements entered in ‘MySQL’ are saved in which file?(a) .mysql_queries(b) .queries(c) .mysql_history(d) .historyThis question was addressed to me in final exam.This interesting question is from Interacting with MySQL topic in chapter General MySQL Use of MySQL |
|
Answer» RIGHT CHOICE is (c) .mysql_history Explanation: Statements ENTERED in ‘MYSQL’ are stored in the file named ‘.mysql_history’. This file is located in the home directory itself. The SQL statements can be directly pasted into this file. |
|