About 375,000 results
Open links in new tab
  1. How to Concat String in SQL WHERE clause - Stack Overflow

    Jul 22, 2013 · How to Concat String in SQL WHERE clause Asked 12 years, 3 months ago Modified 11 years, 11 months ago Viewed 109k times

  2. How to concatenate in SQL Server - Stack Overflow

    May 3, 2015 · To concatenate strings in SQL Server you can simply use the + operator. Note that if one of the substrings is null then the entire concatenated string will become null as well. …

  3. How to use GROUP BY to concatenate strings in SQL Server?

    13 SQL Server 2005 and later allow you to create your own custom aggregate functions, including for things like concatenation- see the sample at the bottom of the linked article.

  4. How to concatenate text from multiple rows into a single text …

    Oct 27, 2015 · How to concatenate text from multiple rows into a single text string in SQL Server Asked 17 years ago Modified 9 months ago Viewed 3.4m times

  5. SQL Server: combining multiple rows into one row

    Thanks but sorry, my question was for "T-SQL" as you can see. Your answer was also included in Combine Multiple child rows into one row MYSQL by the way.

  6. sql - What is the string concatenation operator in Oracle ... - Stack ...

    Jun 29, 2015 · What is the string concatenation operator in Oracle SQL? Are there any "interesting" features I should be careful of? (This seems obvious, but I couldn't find a previous …

  7. Combining (concatenating) date and time into a datetime

    PRMan Over a year ago Casting both as Date field and Time field as DateTime and adding them together works just fine in SQL 17.9 |

  8. Concatenate with NULL values in SQL - Stack Overflow

    I want to concatenate them with + operator without a space. For instance: applejuice The thing is, if there is a null value in the second column, I only want to have the first element as a result. …

  9. How to concatenate many rows with same id in sql?

    SQL Server 2017+ and SQL Azure: STRING_AGG Starting with the next version of SQL Server, we can finally concatenate across rows without having to resort to any variable or XML witchery.

  10. Concat all column values in sql - Stack Overflow

    How to concat all column values from differenct rows returned from a sql query into one value? This is an example: a query returns: FOO ------ RES1 RES2 RES3 now I want to have a result …