Postgresql怎么查询数据库中所有的表,odoo17数据库最依赖表整理

今天遇到了一个需求,需要梳理odoo中数据库表的分类,所以想要知道怎么查询当前数据库中所有的表,特此记录.

一个简单的SQL语句:

sql 复制代码
select * from pg_tables;

得到的结果如下:

显然这个有点杂乱,我们换一个SQL语句:

sql 复制代码
select tablename from pg_tables where schemaname='public'

不过我还想要根据表名升序,这样方便整理,所以加了个排序条件,SQL语句如下.

sql 复制代码
select tablename from pg_tables where schemaname='public' order by tablename;

这里顺便和大家分享一下,要把odoo跑起来,最少需要114张表,这些表的表名如下:

bash 复制代码
auth_totp_device
auth_totp_wizard
base_document_layout
base_enable_profiling_wizard
base_import_import
base_import_mapping
base_import_module
base_language_export
base_language_import
base_language_install
base_module_uninstall
base_module_update
base_module_upgrade
base_partner_merge_automatic_wizard
base_partner_merge_automatic_wizard_res_partner_rel
base_partner_merge_line
bus_bus
bus_presence
change_password_own
change_password_user
change_password_wizard
decimal_precision
iap_account
iap_account_info
iap_account_res_company_rel
ir_act_client
ir_act_report_xml
ir_act_server
ir_act_server_group_rel
ir_act_server_webhook_field_rel
ir_act_url
ir_act_window
ir_act_window_group_rel
ir_act_window_view
ir_actions
ir_actions_todo
ir_asset
ir_attachment
ir_config_parameter
ir_cron
ir_cron_trigger
ir_default
ir_demo
ir_demo_failure
ir_demo_failure_wizard
ir_exports
ir_exports_line
ir_filters
ir_logging
ir_mail_server
ir_model
ir_model_access
ir_model_constraint
ir_model_data
ir_model_fields
ir_model_fields_group_rel
ir_model_fields_selection
ir_model_inherit
ir_model_relation
ir_module_category
ir_module_module
ir_module_module_dependency
ir_module_module_exclusion
ir_profile
ir_property
ir_rule
ir_sequence
ir_sequence_date_range
ir_ui_menu
ir_ui_menu_group_rel
ir_ui_view
ir_ui_view_custom
ir_ui_view_group_rel
rel_modules_langexport
rel_server_actions
report_layout
report_paperformat
res_bank
res_company
res_company_users_rel
res_config
res_config_installer
res_config_settings
res_country
res_country_group
res_country_res_country_group_rel
res_country_state
res_currency
res_currency_rate
res_groups
res_groups_implied_rel
res_groups_report_rel
res_groups_users_rel
res_lang
res_lang_install_rel
res_partner
res_partner_bank
res_partner_category
res_partner_industry
res_partner_res_partner_category_rel
res_partner_title
res_users
res_users_apikeys
res_users_apikeys_description
res_users_deletion
res_users_identitycheck
res_users_log
res_users_settings
reset_view_arch_wizard
rule_group_rel
web_editor_converter_test
web_editor_converter_test_sub
web_tour_tour
wizard_ir_model_menu_create

跑起来之后的样子是这样的:

我用的是odoo17,这个版本在国内的资料还比较少,我后面有时间就分享一下. 不然坑太多了, 我看了很多技术文章, 踩了很多不必要的坑.

相关推荐
你觉得脆皮鸡好吃吗2 分钟前
SQL注入 基础防御
数据库·sql
池佳齐2 分钟前
软考高级系统架构设计师备考(十九):数据库系统—数据库设计
数据库·系统架构
_Evan_Yao11 分钟前
缓存金字塔上的红色闪电:Redis 如何借力 CPU 的 L1/L2/L3 与 TLB 飞驰
java·数据库·redis·后端·缓存
Teable任意门互动12 分钟前
多维表格哪家最好用最容易上手?国产开源 Teable 测评
开发语言·数据库·开源·excel·飞书·开源软件
weixin_3812881824 分钟前
Layui怎么在表格标题栏中嵌入一个迷你的HTML搜索表单
jvm·数据库·python
m0_7478545227 分钟前
C# 文件系统Filter Hook C#能否在用户模式下拦截文件系统调用
jvm·数据库·python
YMatrix 官方技术社区30 分钟前
全栈向量化 + 库内流计算:YMatrix 亮相 Postgres Conference 2026,双引擎重塑 AGI 时代 PostgreSQL 性能底座
大数据·postgresql·agi·ymatrix·超融合数据库
z4424753261 小时前
MySQL如何配置自动清理失效事务锁_结合定时任务清理
jvm·数据库·python
2301_800976931 小时前
数据库的基本操作
数据库·sql·oracle
cyber_两只龙宝1 小时前
【Oracle】Oracle之使用DML语言管理表
linux·运维·服务器·数据库·云原生·oracle