Using information_schema find the right one text line

Viewed 20

how using information_schema find same text from all columns ?

Have this :

SELECT    *
FROM      information_schema.columns
WHERE     table_name like '%cb%';

Need to find all tables name start CB and some column contains the text "OutstandingAmount"

0 Answers
Related