使用presto如何显示像这样的表

bq3bfh9z  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(490)

我有一张table zzzbbb 在架构中 s 以及 show tables from s; 作品。但是如果模式中有很多表 s ,找到合适的表需要时间。
医生说 pattern 可能会有帮助,但具体怎么用呢?
谢谢。

bejyjqdl

bejyjqdl1#

SHOW TABLES LIKE pattern 表现得像个典型的
SQL LIKE 操作员:
%—百分号表示零、一个或多个字符
_-下划线表示单个字符
看到了吗https://www.w3schools.com/sql/sql_like.asp.

presto:tiny> show tables like 'n_tion';
 Table
--------
 nation
(1 row)

presto:tiny> show tables like 'n%';
 Table
--------
 nation
(1 row)

相关问题