我的表格有如下数据
Column -------- 1122 52 1122 62 1122 82 1122 12 112222 1122442
我需要找出在一个模式Hive中间有空格的数字的数目。如果可能的话,请帮我解释一下。
o7jaxewo1#
使用 like 以及 count(*) :
like
count(*)
select count(*) from t where column like '% %';
1条答案
按热度按时间o7jaxewo1#
使用
like
以及count(*)
: