638

我没有看到关于这个主题的任何类似问题,我不得不研究这个我现在正在做的事情。以为我会发布答案,以防其他人有同样的问题。

4

11 回答 11

669

char(13)CR。对于 DOS/Windows 样式的CRLF换行符,您需要char(13)+char(10),例如:

'This is line 1.' + CHAR(13)+CHAR(10) + 'This is line 2.'
于 2008-08-27T20:25:14.207 回答
320

我在这里找到了答案:http: //blog.sqlauthority.com/2007/08/22/sql-server-t-sql-script-to-insert-carriage-return-and-new-line-feed-in-代码/

您只需连接字符串并CHAR(13)在您想要换行的位置插入一个。

例子:

DECLARE @text NVARCHAR(100)
SET @text = 'This is line 1.' + CHAR(13) + 'This is line 2.'
SELECT @text

这将打印出以下内容:

这是第 1 行。
这是第 2 行。

于 2008-08-27T19:55:42.467 回答
97

另一种方法是这样的:

INSERT CRLF SELECT 'fox 
jumped'

也就是说,在编写查询时只需在查询中插入换行符,就会将类似的换行符添加到数据库中。这适用于 SQL 服务器管理工​​作室和查询分析器。如果您在字符串上使用 @ 符号,我相信这也适用于 C#。

string str = @"INSERT CRLF SELECT 'fox 
    jumped'"
于 2009-02-14T15:30:24.483 回答
33

在 SSMS 中运行它,它显示了 SQL 本身中的换行符如何成为跨越行的字符串值的一部分:

PRINT 'Line 1
Line 2
Line 3'
PRINT ''

PRINT 'How long is a blank line feed?'
PRINT LEN('
')
PRINT ''

PRINT 'What are the ASCII values?'
PRINT ASCII(SUBSTRING('
',1,1))
PRINT ASCII(SUBSTRING('
',2,1))

结果:
第 1
行 第 2
行 第 3 行

空换行多长时间?
2

什么是 ASCII 值?
13
10

或者,如果您宁愿在一行上指定您的字符串(几乎!),您可以REPLACE()像这样使用(可选地CHAR(13)+CHAR(10)用作替换):

PRINT REPLACE('Line 1`Line 2`Line 3','`','
')
于 2015-09-17T15:13:05.857 回答
25

所有这些选项都取决于您的情况,但如果您使用的是 SSMS,您可能看不到它们中的任何一个 (如某些评论中提到的 SSMS 隐藏 CR/LF)

因此,与其开车绕弯,不如检查此设置

Tools | Options

这将取代

于 2019-12-05T07:03:47.237 回答
18

跟随谷歌...

从网站上获取代码:

CREATE TABLE CRLF
    (
        col1 VARCHAR(1000)
    )

INSERT CRLF SELECT 'The quick brown@'
INSERT CRLF SELECT 'fox @jumped'
INSERT CRLF SELECT '@over the '
INSERT CRLF SELECT 'log@'

SELECT col1 FROM CRLF

Returns:

col1
-----------------
The quick brown@
fox @jumped
@over the
log@

(4 row(s) affected)


UPDATE CRLF
SET col1 = REPLACE(col1, '@', CHAR(13))

看起来可以通过用CHAR(13)替换占位符来完成

好问题,我自己从来没有做过:)

于 2008-08-27T19:56:30.373 回答
12

我来到这里是因为我担心我在 C# 字符串中指定的 cr-lfs 没有显示在 SQl Server Management Studio 查询响应中。

事实证明,它们在那里,但没有被显示。

要“查看” cr-lfs,请使用 print 语句,如:

declare @tmp varchar(500)    
select @tmp = msgbody from emailssentlog where id=6769;
print @tmp
于 2013-11-26T16:40:24.720 回答
8

我会说

concat('This is line 1.', 0xd0a, 'This is line 2.')

或者

concat(N'This is line 1.', 0xd000a, N'This is line 2.')
于 2019-01-04T15:48:55.820 回答
5

这是一个 C# 函数,它将文本行添加到现有文本 blob,由 CRLF 分隔,并返回适用于INSERTUPDATE操作的 T-SQL 表达式。它有一些我们专有的错误处理,但一旦你把它撕掉,它可能会有所帮助——我希望如此。

/// <summary>
/// Generate a SQL string value expression suitable for INSERT/UPDATE operations that prepends
/// the specified line to an existing block of text, assumed to have \r\n delimiters, and
/// truncate at a maximum length.
/// </summary>
/// <param name="sNewLine">Single text line to be prepended to existing text</param>
/// <param name="sOrigLines">Current text value; assumed to be CRLF-delimited</param>
/// <param name="iMaxLen">Integer field length</param>
/// <returns>String: SQL string expression suitable for INSERT/UPDATE operations.  Empty on error.</returns>
private string PrependCommentLine(string sNewLine, String sOrigLines, int iMaxLen)
{
    String fn = MethodBase.GetCurrentMethod().Name;

    try
    {
        String [] line_array = sOrigLines.Split("\r\n".ToCharArray());
        List<string> orig_lines = new List<string>();
        foreach(String orig_line in line_array) 
        { 
            if (!String.IsNullOrEmpty(orig_line))  
            {  
                orig_lines.Add(orig_line);    
            }
        } // end foreach(original line)

        String final_comments = "'" + sNewLine + "' + CHAR(13) + CHAR(10) ";
        int cum_length = sNewLine.Length + 2;
        foreach(String orig_line in orig_lines)
        {
            String curline = orig_line;
            if (cum_length >= iMaxLen) break;                // stop appending if we're already over
            if ((cum_length+orig_line.Length+2)>=iMaxLen)    // If this one will push us over, truncate and warn:
            {
                Util.HandleAppErr(this, fn, "Truncating comments: " + orig_line);
                curline = orig_line.Substring(0, iMaxLen - (cum_length + 3));
            }
            final_comments += " + '" + curline + "' + CHAR(13) + CHAR(10) \r\n";
            cum_length += orig_line.Length + 2;
        } // end foreach(second pass on original lines)

        return(final_comments);


    } // end main try()
    catch(Exception exc)
    {
        Util.HandleExc(this,fn,exc);
        return("");
    }
}
于 2010-03-04T19:11:27.980 回答
3

这总是很酷,因为当您从 Oracle 等导出列表时,您会获得跨越多行的记录,而这反过来又可能对 cvs 文件等感兴趣,所以要小心。

无论如何,Rob 的回答很好,但我建议使用 @ 以外的其他东西,多尝试一些,比如 §§@@§§ 或其他东西,这样它就有机会获得一些独特性。(但是,请记住您插入的varchar/字段的长度..)nvarchar

于 2008-08-27T20:26:57.040 回答
0

在某些特殊情况下,您可能会发现这很有用(例如,在 MS Report 中呈现单元格内容)
示例:

select * from 
(
values
    ('use STAGING'),
    ('go'),
    ('EXEC sp_MSforeachtable 
@command1=''select ''''?'''' as tablename,count(1) as anzahl from  ? having count(1) = 0''')
) as t([Copy_and_execute_this_statement])
go
于 2020-06-15T08:47:01.653 回答