Good afternoon, I am using WorkBeanch 6.3 and I need to search the MySql database if a particular Column exists and what its Table, I also need to know if the particular Column is used in a Procedure or View, for example in Sql Server I do this;
SELECT O.name as Tabelas
FROM syscolumns C
INNER JOIN sysobjects O ON C.id = O.id
WHERE c.name like '%idConta%'