以下哪几个大数据计算服务(MaxCompute原ODPS)的SQL语句可以用户表user中找出用户名称username中包含’hu’的记录?()
A.select* from user where username rlike ’.*hu’ B.select* from user where username like ‘%hu%’ C.select* from user where username contains(‘hu’) D.select* from user where username like ’*hu*’