Re: searching a value in a variable/field in all tables in a schema

2018-08-30 Thread Ruiqiang Chen
Thanks! On Thu, Aug 30, 2018 at 4:51 PM David G. Johnston < david.g.johns...@gmail.com> wrote: > On Thu, Aug 30, 2018 at 1:44 PM, Ruiqiang Chen > wrote: > >> Does anyone have experience of searching a value in a variable/field in >> all tables in a schema? >> &g

Re: searching a value in a variable/field in all tables in a schema

2018-08-30 Thread David G. Johnston
On Thu, Aug 30, 2018 at 1:44 PM, Ruiqiang Chen wrote: > Does anyone have experience of searching a value in a variable/field in > all tables in a schema? > SELECT 'Tbl1'::text AS loc, fld FROM schema.tbl1 WHERE fld = 'value' [UNION ALL SELECT 'Tbl2'::text

searching a value in a variable/field in all tables in a schema

2018-08-30 Thread Ruiqiang Chen
Does anyone have experience of searching a value in a variable/field in all tables in a schema? If you can provide some code not creating stored procedure that would be great. Thanks, Ray