About 161,000 results
Open links in new tab
  1. Best FUNCTION to search for a character inside a string sql?

    Jun 20, 2013 · It is standard SQL and SQL Server has some good optimizations built into the query engine to handle it. EDIT (in response to a comment): Getting the first part of the string …

  2. sql - How do I split a delimited string so I can access individual ...

    Nov 2, 2015 · More on split functions, why (and proof that) while loops and recursive CTEs don't scale, and better alternatives, if splitting strings coming from the application layer: Split strings …

  3. sql - Optimal way to concatenate/aggregate strings - Stack Overflow

    They have implimented STRING_AGG() in Azure SQL Database as well. That should provide the exact functionality originally requested in this post with native and built in support. @hrobky …

  4. SQL SELECT WHERE field contains words - Stack Overflow

    May 31, 2023 · With MySQL:. Auxiliar Function-- Split @str by @sep -- Returns all parts CREATE FUNCTION [dbo].[fnSplit] ( @sep CHAR(1), @str VARCHAR(512) ) RETURNS TABLE AS …

  5. Azure Functions Database Connection String - Stack Overflow

    May 13, 2016 · App.Config or Web.Config doesnt work for Azure function connection strings. If you have Database Layer Library you cant overwrite connection string using any of these as …

  6. String Aggregation in Oracle: Multiple Rows into Single Column

    Oct 20, 2013 · hi I have following function for string aggregation in oracle CREATE OR REPLACE FUNCTION STRING_AGGREGATE(i_query VARCHAR2, i_seperator VARCHAR2 DEFAULT …

  7. How to convert all UPPER CASE text to Proper Case/Title Case in …

    This handles multiple words. Like his answer, this doesn't use any UDFs, only built-in functions (STRING_SPLIT and STRING_AGG) and it's pretty fast. STRING_AGG requires SQL Server …

  8. SQL Server 2012 string functions - Stack Overflow

    May 20, 2022 · SQL Server 2012 string functions. Ask Question Asked 3 years ago. Modified 3 years ago. Viewed 260 times ...

  9. Oracle PL SQL STRING Functions - Stack Overflow

    Jun 19, 2020 · Below SQL uses Oracle built-in functions INSTR and SUBSTR and assumes that the "code" is always the last part of the string and is always preceded by a single, underscore …

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

    Eight years later... Microsoft SQL Server vNext Database Engine has finally enhanced Transact-SQL to directly support grouped string concatenation. The Community Technical Preview …