Mysql
 sql >> Database >  >> RDS >> Mysql

Come si ottiene un output in formato tabella da MySQL in modalità non interattiva?

Aggiungi il -t opzione su MySQL (tabella).

  mysql -t -uroot mydb < myscript.sql

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