我想删除可能使用假名注册的名称。
由于开发人员忘记对表单注册进行验证。现在我想删除假名。
为了检查这个名字是否是假的,我正在检查这个名字是否包含任何数字?
这是我写的查询,但它不起作用......
SELECT registration.regi_id, student.first_name,
student.cont_no, student.email_id,
registration.college,
registration.event_name,
registration.accomodation
FROM student, registration
WHERE student.stud_id = registration.stud_id
AND student.first_name NOT RLIKE '%[0-9]%'
如何解决这个问题?
对不起,我的语言问题,
PS “first_name”字段中有很多名字,比如“asdfasdf12323”,我不希望这种名字显示在列表中。