Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在终端中输出 SQL,以便即使对于很长的行也可以读取?
我的 SQL 输出非常混乱,因为每一行都很长。这让我的终端里的桌子乱七八糟。
我记得一种输出 SQL 的方法,以便它可以按行读取。我相信这是通过在查询末尾添加“\ G”来完成的,但我在 Google 上找不到任何文档。
在 linux 上,任何带有长行的输出都可以这样查看:
program_that_produces_long_lines | less -S
您将能够使用箭头查看屏幕外的内容。