About 1,320,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 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

  4. 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.

  5. What does SQL Select symbol || mean? - Stack Overflow

    Apr 29, 2014 · 6 It is a concat statement. It will concatenate the two strings. Here is a helpful post! What is the difference between "||" operator and concat function in Oracle?

  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. SQL Server: Best way to concatenate multiple columns?

    I am trying to concatenate multiple columns in a query in SQL Server 11.00.3393. I tried the new function CONCAT() but it's not working when I use more than two columns. So I wonder if …

  8. sql - MySQL combine two columns into one column - Stack Overflow

    Mar 30, 2014 · The SQL standard provides the CONCAT () function to concatenate two strings into a single string. SQLite, however, does not support the CONCAT () function. Instead, it …

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

    How to concatenate many rows with same id in sql? Asked 9 years, 8 months ago Modified 2 years, 7 months ago Viewed 157k times

  10. 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 |