Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Microsoft SQL Server odpowiednik MySQL REGEXP

Proszę bardzo (skompiluj jako asembler SQL CLR):

using System.Collections;
using System.Text.RegularExpressions;
using Microsoft.SqlServer.Server;

public partial class UserDefinedFunctions
{
  [SqlFunction]
  public static bool RegexMatch(string expr, string regex)
  {
    return Regex.IsMatch(expr, regex);
  }

  [SqlFunction]
  public static string RegexReplace(string expr, string regex, string replace)
  {
    return Regex.Replace(expr, regex, replace);
  }

  [SqlFunction(FillRowMethodName="GetToken", 
       TableDefinition="Value nvarchar(max)")]
  public static IEnumerable RegexSplit(string expr, string regex)
  {
    return Regex.Split(expr, regex);
  }

  public static void GetToken(object row, out string str)
  {
     str = (string) row;
  }
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Przygotowana instrukcja MySQL — jak przejść przez pętlę

  2. Przekazywanie nazwy tabeli jako parametru przygotowanego zestawienia

  3. 3 sposoby na wykrycie, czy ciąg pasuje do wyrażenia regularnego w MySQL

  4. AJAX aktualizuje bazę danych MYSQL za pomocą funkcji wywoływanej z HTML wygenerowanego z PHP

  5. Uzyskaj tylko rekordy utworzone dzisiaj w laravel