efc=# select  tablename from pg_tables where tablename like  E'test\_%' and tablename not in ('test','test_defautl');
  tablename   
--------------
 test_default
 testu
 testu_1
 testu_2
(4 rows)

efc=# select  tablename from pg_tables where tablename like  'test\_%' and tablename not in ('test','test_defautl');
  tablename   
--------------
 test_default
(1 row)

相关文章:

  • 2021-05-24
  • 2021-05-28
  • 2022-01-04
  • 2021-08-18
  • 2021-05-29
  • 2021-08-10
  • 2021-08-22
猜你喜欢
  • 2022-01-21
  • 2021-07-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案