列表

详情


大数据计算服务(MaxCompute, 原ODPS)的表user_profile 中有first _name和last _name两个字段,都是string类型,为了把这两个字段拼成一个TAB键(制表符,ascii码为9)分隔的字符串,可以使用以下哪些方式?

A. select concat(first_name,tab,last_name) from user_profile;

B. select first_name+'\t'+last_name from user_profile;

C. select concat(first_name,'\t',last_name) from user_profile;

D. select concat(first_name,chr(9),last_name) from user_profile;

参考答案: CD

详细解析:

A选项语法错误;BCD结果如图<img src="http://wei.edu360.cn/attachment/simple_images/20201106/8fb08a6943-15.png"><br>

上一题