oracle 中的文本换行
我们如何才能仅在 ORACLE SQL 中将基于标准长度(例如 40 个字符)的文本(列值)包装成多行。
how can we wrap a text (coulmn value) basing ona stndard length of lets say 40 characters in to multi line in ORACLE SQL only.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 SQL Plus 中,您可以指定列宽。
上面的输出格式为 40 列宽,并且会将所有内容包装到下一行。
输出显示通常由客户端控制
In SQL Plus you can assign column widths
The above format the output to be 40 columns wide and it would wrap anything to the next line.
Output display is usually controlled by the client
我从 Martin Burbridge 获得并修改了一些代码:
Some code I got from Martin Burbridge and modified: