InterviewSolution
Saved Bookmarks
| 1. |
Which option prints output in table-format when MySQL is run interactively?(a) -t(b) -tf(c) -p(d) -pf |
|
Answer» Right answer is (a) -t The explanation: MySQL produces output in tab-delimited format when it is run in batch mode. Suppose a table-format output is desired, the -t option is used along with the mysql command. -tf is not a valid option. |
|