Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie erhalten Sie eine tabellenformatierte Ausgabe von MySQL im nicht interaktiven Modus?

Fügen Sie das -t hinzu Option zu mysql (Tabelle).

  mysql -t -uroot mydb < myscript.sql

  mysql -t -uroot mydb -e 'select * from mytable'