第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在所有表中搜索特定值(PostgreSQL)?

如何在所有表中搜索特定值(PostgreSQL)?

www說(shuō) 2019-09-20 17:06:56
是否可以在PostgreSQL中搜索每個(gè)表的每一列中的特定值?Oracle 提供了類似的問(wèn)題。
查看完整描述

3 回答

?
RISEBY

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊

如果有人認(rèn)為它可以幫助你。這是@DanielVérité的函數(shù),另一個(gè)參數(shù)接受可以在搜索中使用的列的名稱。這樣可以減少處理時(shí)間。至少在我的測(cè)試中它減少了很多。


CREATE OR REPLACE FUNCTION search_columns(

    needle text,

    haystack_columns name[] default '{}',

    haystack_tables name[] default '{}',

    haystack_schema name[] default '{public}'

)

RETURNS table(schemaname text, tablename text, columnname text, rowctid text)

AS $$

begin

  FOR schemaname,tablename,columnname IN

      SELECT c.table_schema,c.table_name,c.column_name

      FROM information_schema.columns c

      JOIN information_schema.tables t ON

        (t.table_name=c.table_name AND t.table_schema=c.table_schema)

      WHERE (c.table_name=ANY(haystack_tables) OR haystack_tables='{}')

        AND c.table_schema=ANY(haystack_schema)

        AND (c.column_name=ANY(haystack_columns) OR haystack_columns='{}')

        AND t.table_type='BASE TABLE'

  LOOP

    EXECUTE format('SELECT ctid FROM %I.%I WHERE cast(%I as text)=%L',

       schemaname,

       tablename,

       columnname,

       needle

    ) INTO rowctid;

    IF rowctid is not null THEN

      RETURN NEXT;

    END IF;

 END LOOP;

END;

$$ language plpgsql;

Bellow是上面創(chuàng)建的search_function的使用示例。


SELECT * FROM search_columns('86192700'

    , array(SELECT DISTINCT a.column_name::name FROM information_schema.columns AS a

            INNER JOIN information_schema.tables as b ON (b.table_catalog = a.table_catalog AND b.table_schema = a.table_schema AND b.table_name = a.table_name)

        WHERE 

            a.column_name iLIKE '%cep%' 

            AND b.table_type = 'BASE TABLE'

            AND b.table_schema = 'public'

    )


    , array(SELECT b.table_name::name FROM information_schema.columns AS a

            INNER JOIN information_schema.tables as b ON (b.table_catalog = a.table_catalog AND b.table_schema = a.table_schema AND b.table_name = a.table_name)

        WHERE 

            a.column_name iLIKE '%cep%' 

            AND b.table_type = 'BASE TABLE'

            AND b.table_schema = 'public')

);


查看完整回答
反對(duì) 回復(fù) 2019-09-20
  • 3 回答
  • 0 關(guān)注
  • 1395 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)