About 1,350,000 results
Open links in new tab
  1. How to concatenate variables into SQL strings - Stack Overflow

    I need to concatenate a variable table name into my SQL query such as the following... ALTER FUNCTION fn_myfunction(@KeyValue text) BEGIN INSERT INTO @tmpTbl1 SELECT …

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

  3. SQL Query - Concatenating Results into One String

    53 This question already has answers here: How to concatenate text from multiple rows into a single text string in SQL Server (51 answers)

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

    This works on SQL Server 2008 R2. If for some reason you wanted to make sure the first part doesn't have a time component, first cast the field to date, then back to .

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

  6. sql - How can multiple rows be concatenated into one in Oracle …

    How can I achieve the following in oracle without creating a stored procedure? Data Set: question_id element_id 1 7 1 8 2 9 3 10 3 ...

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

  8. sql - Concatenate multiple result rows of one column into one, …

    Concatenate multiple result rows of one column into one, group by another column [duplicate] Asked 12 years, 6 months ago Modified 2 years, 7 months ago Viewed 380k times

  9. Oracle SQL, concatenate multiple columns + add text

    Oracle SQL, concatenate multiple columns + add text Asked 16 years ago Modified 7 years, 4 months ago Viewed 737k times

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