当前位置:网站首页>PostgreSQL notes

PostgreSQL notes

2022-06-26 21:05:00 White moon and blue mountain

brief introduction

This article records postgreSQL Some commands and techniques for daily use , contain

  • View table definition
  • View custom function definitions

View table definition

pg_get_tabledef(’[schema].[table]’)

select pg_get_tabledef('public.order_users')

View custom function definitions

select prosrc from pg_proc where proname = ‘[functionname]’

select prosrc from pg_proc where proname = 'test_function_1'
原网站

版权声明
本文为[White moon and blue mountain]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202161730139629.html