是否可以让查询只返回字段的前100个字符?
例如,我的原始查询是:
select text from my_table
但是现在我只想要列中的前100个字符' text',这可能吗?谢谢!
答案 0 :(得分:2)
select Strleft(text,100) from my_table
http://www.cloudera.com/documentation/enterprise/5-8-x/topics/impala_string_functions.html