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.
我想使用以下语句在名为 people 的表中添加一行,其中一列是 varchar(100)
插入人的价值观('a b')
我想在 a 和 b 之间有一条新线。
这个怎么做?
我尝试了类似 'a CHAR(13) b' 的方法,但没有奏效。
谢谢。
怎么样
'a ' + CHAR(13) + ' b'
这也有效:
'a' + CRLF + 'b'
也检查这个链接
如何在 SQL Server VARCHAR/NVARCHAR 字符串中插入换行符