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

Jak uniknout speciálním znakům SQL v regulárním výrazu v Mysql

Stačí před znakem použít zpětné lomítko, jak je uvedeno v Sekce dokumentace 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.  

Poznámka (z dokumentace MySQL):



  1. MYSQL:porovnání NULL data s CURRENT_DATE

  2. Přeskočit vložení na duplicitní záznam v mysql

  3. Přenos dat mezi databázemi pomocí PostgreSQL

  4. Jump to Start Test-Driven Database Development (TDDD)