参考答案: AB
详细解析:
以下哪几个大数据计算服务(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*'
参考答案: AB
详细解析: