How do I concatenate text in a query in sql server? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T16:21:05Zhttp://stackoverflow.com/feeds/question/54334http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server4How do I concatenate text in a query in sql server?Greg Ogle2008-09-10T15:11:42Z2008-09-16T21:09:09Z
<pre><code>SELECT notes + 'SomeText'
FROM NotesTable a
</code></pre>
<p>gives <code>The data types nvarchar and text are incompatible in the add operator.</code> as an error.</p>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/54343#543438Answer by GateKiller for How do I concatenate text in a query in sql server?GateKiller2008-09-10T15:13:16Z2008-09-10T15:13:16Z<p>The only way would be to convert your text field into an nvarchar field.</p>
<pre><code>Select Cast(notes as nvarchar(4000)) + 'SomeText'
From NotesTable a
</code></pre>
<p>Otherwise, I suggest doing the concatenation in your application.</p>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/54357#543572Answer by Craig for How do I concatenate text in a query in sql server?Craig2008-09-10T15:15:48Z2008-09-10T15:15:48Z<p>You have to explicitly cast the string types to the same in order to concatenate them, In your case you may solve the issue by simply addig an 'N' in front of 'SomeText' (N'SomeText'). If that doesn't work, try Cast('SomeText' as nvarchar(8)).</p>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/57061#570611Answer by Scott Nichols for How do I concatenate text in a query in sql server?Scott Nichols2008-09-11T16:38:46Z2008-09-11T17:34:21Z<p>If you are using SQL Server 2005 or greater, depending on the size of the data in the Notes field, you may want to consider casting to nvarchar(max) instead of casting to a specific length which could result in string truncation. </p>
<pre><code>Select Cast(notes as nvarchar(max)) + 'SomeText' From NotesTable a
</code></pre>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/62119#621191Answer by edosoft for How do I concatenate text in a query in sql server?edosoft2008-09-15T10:35:15Z2008-09-15T10:35:15Z<p>If you are using SQL server 2005 (or greater) you might want to consider switching to nvarchar(max) in your table definition, because TEXT, NTEXT and IMAGE data types of SQL Server 2000 will be deprecated in future version of SQL Server, SQL Server 2005 provides backward compatibility to data types but it is recommanded to use new data types which are VARHCAR(MAX), NVARCHAR(MAX) and VARBINARY(MAX).</p>
<p>-Edoode</p>
http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server/77130#771301Answer by Chris Wuestefeld for How do I concatenate text in a query in sql server?Chris Wuestefeld2008-09-16T21:09:09Z2008-09-16T21:09:09Z<p>You might want to consider NULL values as well. In your example, if the column <strong>notes</strong> has a null value, then the resulting value will be NULL. If you want the null values to behave as empty strings (so that the answer comes out 'SomeText'), then use the IsNull function: </p>
<pre><code>Select IsNull(Cast(notes as nvarchar(4000)),'') + 'SomeText' From NotesTable a
</code></pre>