多选题 : 大数据计算服务(MaxCompute,原ODPS )中,在做web日志分析时如果发现日志内容(对应字段log_content)中有’select’字符串,则有可能是恶意的sql注入攻击,可以使用()从日志表log中找出所有符合这种特征的访问。
(A)select* from log where tolower(log_content) like ‘%select%’;
(B)select* from log where instr(tolower(log_content),’select’)>0;
(C)select* from log where ‘select’ in tolower(log_content);
(D)select* from log where regexp_instr(tolower(log_content),’select’,1)>0;
参考答案
继续答题:下一题