Computer >> Computer tutorials >  >> Programming >> MySQL

How to get the MySQL interactive output format in batch mode also?


We can get the MySQL output format in batch mode with the help of –t option. For example, after running the same query in batch mode with –t option we will get the output like interactive format.

Example

C:\Program Files\MySQL\bin>mysql -u root -p gaurav < hh.sql -t
Enter password: *****

Output

+------+
| id   |
+------+
| 1    |
| 2    |
+------+