如何排列来自 db_send_email 的记事本中的字段
我有带有预期结果的记事本...但是字段排列不正确。一列在一行中,另一列在另一行中。看起来不太好。我听说我们可以设置结果集的列宽度.请帮助我了解语法和示例。
I have the notepad with the expected results...But the fields are not arranged properly.One column is coming in one line and another in another like.Its not looking good.I heard like we can set the column width for the result set.Please help me with the syntax and an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的意思是使用
sp_send_dbmail
过程发送数据库邮件,而不是db_send_email
。在这种情况下,您可以通过以下方式控制输出格式。1. 将输出线宽度设置为固定值。
所选宽度应大于查询中所有字段的长度总和,例如
@query_result_width = 400
。但是,这会产生太宽的行,特别是在varchar(50)
或varchar(250)
字段有很多填充空间的情况下。2. 截断字段。
这将生成其中
varchar(50)
或varchar(250)
将被截断为 25 个符号的输出。当然,您可以使用任何适当的不同值。3. 调整字段长度。
只需添加字段长度计算并生成具有精确宽度的输出。
Assuming that you mean
sp_send_dbmail
procedure to send database mail but notdb_send_email
. In such case you can control your output format in the following way.1. Set width of output line to fixed value.
Selected width should be greater than sum of lengthes of all fields in the query, e.g.
@query_result_width = 400
. However, this will produce too wide lines especially in casevarchar(50)
orvarchar(250)
fields have many padding spaces.2. Truncate fields.
This will produce output where
varchar(50)
orvarchar(250)
will be truncated to 25 symbols. Of course, you can use any appropriate different value.3. Adjust field lengths.
Just add field lengths calculation and produce output with exact width.