我尝试使用以下命令来选择同一行中的所有数据库:
mysql -s -u root -p -e "show databases;"
但是,它会在多行中显示代表所有可用数据库的行。
例子:
foo
bar
baz
但我希望输出是这样的:
foo bar baz
该show databases
查询是一个示例,它还可以帮助我任何可以在同一行中显示每个选定行的解决方案。
该--silent
选项似乎无法正常工作:
s, --silent Be more silent. Print results with a tab as separator,
each row on new line.