Which characters are actually capable of causing SQL injection in mysql
问题 We all know that we should use prepared statements or the appropriate replacement/formatting rules in order to prevent sql injection in our applications. However, when taking a look at MySQL's list of character literals, I noticed that it includes the following characters: \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