如何在配置单元中找到以数字结尾的表名?我试过一些组合,比如 show tables like "%[0-9]%"; 但这似乎行不通。
show tables like "%[0-9]%";
8nuwlpux1#
执行 hive 使用 grep ,如下所示:
hive
grep
hive -e "use your_schema; show tables;" | grep '[0-9]$'
1条答案
按热度按时间8nuwlpux1#
执行
hive
使用grep
,如下所示: