列表

详情


大数据计算服务(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;

参考答案: ABD

详细解析:

正确答案ABD C选项语法就不能通过。

上一题