How do I concatenate text in a query in sql server? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:21:05Z http://stackoverflow.com/feeds/question/54334 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54334/how-do-i-concatenate-text-in-a-query-in-sql-server 4 How do I concatenate text in a query in sql server? Greg Ogle 2008-09-10T15:11:42Z 2008-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#54343 8 Answer by GateKiller for How do I concatenate text in a query in sql server? GateKiller 2008-09-10T15:13:16Z 2008-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#54357 2 Answer by Craig for How do I concatenate text in a query in sql server? Craig 2008-09-10T15:15:48Z 2008-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#57061 1 Answer by Scott Nichols for How do I concatenate text in a query in sql server? Scott Nichols 2008-09-11T16:38:46Z 2008-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#62119 1 Answer by edosoft for How do I concatenate text in a query in sql server? edosoft 2008-09-15T10:35:15Z 2008-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#77130 1 Answer by Chris Wuestefeld for How do I concatenate text in a query in sql server? Chris Wuestefeld 2008-09-16T21:09:09Z 2008-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>