Thanks for posting your question in the Microsoft Q&A forum.
In Databricks, you can achieve similar functionality using the INFORMATION_SCHEMA.COLUMNS view, which provides metadata about columns in tables.
SELECT table_schema AS schema_name, table_name, column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE column_name LIKE '%mob%'
** Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful **