문제

I am using the command line in MySQL on a Linux box.

I am logged in as root.

I need to find a field that in a table somewhere (in this schema there are 400+ tables)

Field is called 'discounts' or 'discounts'

I just need to find what table that specific field is in and if it is in more then one table with that feild or not.

Thanks for your help guys.

Edit so the db is called magento and the tables are in there.

도움이 되었습니까?

해결책

Try this:

SELECT * FROM INFORMATION_SCHEMA.COLUMNS 
WHERE LOWER(COLUMN_NAME) = 'discount' or LOWER(COLUMN_NAME) = 'discounts';

다른 팁

Try this:

SELECT * FROM information_schema.columns WHERE column_name = 'discounts'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top