我的表数据如下Column -------- 1122 52 1122 62 1122 82 1122 12 112222 1122442 我需要找到在模式Hive中在MIDDLE中具有空格的那些数字的计数。如果可以的话,请帮助我获得解释的数量。 最佳答案 使用like和count(*):select count(*) from t where column like '% %';