Oct 6, 2004 #1 hyy1109 IS-IT--Management Dec 16, 2002 27 US Is there a way to find all tables with a column name called emp_no? Thanks.
Oct 6, 2004 #2 MDXer Technical User Oct 19, 2002 1,982 US This should give you what your looking for Code: Select Table_Name From Information_Schema.Columns Where Column_name = 'emp_no' Shoot Me! Shoot Me NOW!!! - Daffy Duck Upvote 0 Downvote
This should give you what your looking for Code: Select Table_Name From Information_Schema.Columns Where Column_name = 'emp_no' Shoot Me! Shoot Me NOW!!! - Daffy Duck
Oct 6, 2004 Thread starter #3 hyy1109 IS-IT--Management Dec 16, 2002 27 US Works. Thanks. Upvote 0 Downvote