How to deal with SQL injection? Three aspects:
1, filtering special characters in user input parameters to reduce risks;
2. It is forbidden to splice sql statements through strings and strictly use parameter binding to pass in parameters;
3. Reasonable use of the mechanism provided by the database framework.