您现在的位置是:课程教程文章
PostgreSQL如何判断字段是否存在
2023-12-18 19:23课程教程文章 人已围观
-
WPS2021文字段落编辑与高级排版1080P高清视
WPS2021文字段落编辑与高级排版1080P高清视课程学习截止日期 第八期: 2029年9月1日 第一期: 2027年3月1日... -
Zoho CRM
Zoho CRM1、在线索模块新增字段:审批状态。 2、线索模块页面增加提交审核按钮。 3、... -
WPS2021文字段落编辑与高级排版1080P高清视
WPS2021文字段落编辑与高级排版1080P高清视课程提纲... -
CRMEB4、Pro商品批量更新,支持多规格,新
CRMEB4、Pro商品批量更新,支持多规格,新1. 老师介绍 CRMEB特邀讲师,CRMEB论坛超级版主,CRMEB开发群管理员。 2、课程简介...
PostgreSQL如何判断字段是否存在
方法一:
select count(*) from information_schema.columns WHERE table_schema = 'table_schema' and table_name = 'table_name' and column_name = 'column_name';
方法二:
select * from information_schema.columns WHERE table_schema = 'table_schema' and table_name = 'table_name' and column_name = 'column_name';
补充:
判断表是否存在:
select count (*) from information_schema.tables WHERE table_schema = 'table_schema' and table_name = 'table_name'; select * from information_schema.tables WHERE table_schema = 'table_schema' and table_name = 'table_name';
推荐:postgresql教程
课程教程:PostgreSQL如何判断字段是否存在上一篇:PostgreSQL怎么延时执行
下一篇:没有了