小編給大家分享一下PostgreSQL判斷字段是否存在的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)公司是專業(yè)的紅古網(wǎng)站建設(shè)公司,紅古接單;提供成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行紅古網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
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判斷字段是否存在的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!