Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking for a CONCAT function in SQL Server 2008 R2.. I found the link http://msdn.microsoft.com/en-us/library/hh231515.aspx for this function. But when I use this function, it gives the following error:

Msg 195, Level 15, State 10, Line 7
'CONCAT' is not a recognized built-in function name.

Whether CONCAT function exists in SQL Server or not?

share|improve this question
2  
How are you using it? – Oded May 11 '12 at 11:18
Yes - in SQL Server 2012 as the documentation you link to clearly shows.... – marc_s May 11 '12 at 11:30
@Oded I just give try to execute the stmt - select concat('b', 'a') – Mitesh Budhabhatti May 11 '12 at 14:18
@marc_s: The documentation does have some indication that it's for SQL Server 2012, but there's no indication that CONCAT is new for 2012. – Gabe Jul 24 '12 at 2:07

3 Answers

up vote 13 down vote accepted

CONCAT is new to SQL Server 2012. The link you gave makes this clear, it is not a function on Previous Versions, including 2008 R2.

That it is part of SQL Server 2012 can be seen in the document tree:

SQL Server 2012  
Product Documentation  
Books Online for SQL Server 2012  
Database Engine  
  Transact-SQL Reference (Database Engine)  
    Built-in Functions (Transact-SQL)  
      String Functions (Transact-SQL)  

EDIT Martin Smith helpfully points out that SQL Server provides an implementation of ODBC's CONCAT function.

share|improve this answer
5  
@Oded The question is "Whether CONCAT function exists in SQL Server or not?". The asker says he's using 08 R2. How is this not the answer? – ta.speot.is May 11 '12 at 11:21
3  
You can use SELECT {fn concat ('foo', 'bar')}; in previous versions. Only accepts 2 parameters though. – Martin Smith May 11 '12 at 11:22
Which makes is a bad question. And just saying "yes it is" isn't helping with the problem. – Oded May 11 '12 at 11:22
1  
My point is that you are completely skirting the obvious issue - the OP is using CONCAT on SQL Server and it fails. Saying that is does exist doesn't help in the least. – Oded May 11 '12 at 11:23
1  
+1 I think this is an acceptable answer. Although it might be worth providing an alternative to CONCAT as the user is unable to use this function with their SQL Server version. – Curt May 11 '12 at 11:25
show 7 more comments

just for completeness - in SQL 2008 you would use the plus (+) operator to perform string concatenation. Here is the MSDN reference w/sample code. Starting with SQL 2012, you may wish to use the new CONCAT function, here is that reference.

share|improve this answer

CONCAT, as stated, is not supported for SQL Server 2012 and below. However you can concatenate simply using the + operator as suggested. But beware, this operator will throw an error if the first operand is a number since it thinks will be adding and not concatenating. To resolve this issue just add '' in front. For example

someNumber + 'someString' + .... + lastVariableToConcatenate will raise an error BUT
'' + someNumber + 'someString' + ...... will work just fine.

Also, if there are two numbers to be concatenated make sure you add a '' between them, like so
.... + someNumber + '' + someOtherNumber + .....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.