SELECT * FROM student_test WHERE (字段 LIKE '%条件%');
SELECT * FROM student_test WHERE (sex LIKE '%F%') AND (math LIKE '%%');
SELECT * FROM student_test WHERE (字段 LIKE '%条件%');
SELECT * FROM student_test WHERE (sex LIKE '%F%') AND (math LIKE '%%');