sql >> データベース >  >> RDS >> Mysql

Mysqlの正規表現で特殊なSQL文字をエスケープする方法

    MySQLドキュメントセクション9.1

    \0  An ASCII NUL (0x00) character.  
    \'  A single quote ("'") character.  
    \"  A double quote (""") character.  
    \b  A backspace character.  
    \n  A newline (linefeed) character.  
    \r  A carriage return character.  
    \t  A tab character.  
    \Z  ASCII 26 (Control+Z). See note following the table.  
    \\  A backslash ("\") character.  
    \%  A "%" character. See note following the table.  
    \_  A "_" character. See note following the table.  
    

    注(MySQLドキュメントから):



    1. Oracle PL/SQLで呼び出し元のプロシージャまたは関数の名前を取得します

    2. Laravel:ネストされたhasManyリレーションシップ(hasManyThrough)の平均を取得する方法

    3. 最適化のしきい値–データのグループ化と集約、パート1

    4. 日付列に基づくMySQLの週ごとのグループ化?