sql >> Databáze >  >> RDS >> Mysql

Microsoft SQL Server ekvivalent MySQL REGEXP

Tady to je (kompilujte jako SQL CLR sestavení):

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. CTE Recursion pro získání stromové hierarchie

  2. MySQL EXPLAIN:Použití indexu vs. Použití podmínky indexu

  3. PDO + MySQL vždy vrací řetězce, ale co MsSQL?

  4. Chyba pip instalace mysqlclient systému Mac OS Sierra virtualenv (python 2.7).