Home > Database > Mysql Tutorial > body text

How to get MySQL interactive output format in batch mode?

PHPz
Release: 2023-09-09 10:17:02
forward
1050 people have browsed it

How to get MySQL interactive output format in batch mode?

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

Example

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

Output

+------+
| id   |
+------+
| 1    |
| 2    |
+------+
Copy after login

The above is the detailed content of How to get MySQL interactive output format in batch mode?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!