I don't know why so many of you suggesting Joining with sys.table with sys.columns
you can simply use below code:
Select object_name(object_id) as TableName,* from SYS.columns where name LIKE '%MyName%'
or
If you want schema name as well:
Select * from INFORMATION_SCHEMA.COLUMNS
where COLUMN_NAME LIKE '%MyName%'